-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 828 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "depile"
version = "0.1.0"
authors = ["Ruifeng Xie <[email protected]>"]
edition = "2021"
repository = "https://github.com/ruifengx/depile.git"
homepage = "https://github.com/ruifengx/depile.git"
license = "AGPL-3.0-or-later"
readme = "README.md"
description = "Translate three-address code back to C code."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
parse-display = "0.5.3"
thiserror = "1.0.30"
displaydoc = "0.2.3"
derivative = "2.2.0"
itertools = "0.10.3"
indoc = "1.0.3"
smallvec = { version = "1.7.0", features = ["const_generics", "const_new"] }
clap = { version = "3.0.7", features = ["derive"], optional = true }
[dev-dependencies]
indoc = "1.0.3"
[[bin]]
name = "depile"
required-features = ["cli"]
[features]
cli = ["clap"]