-
Notifications
You must be signed in to change notification settings - Fork 258
/
Copy pathCargo.toml
49 lines (45 loc) · 1.26 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "c2rust-refactor"
version = "0.20.0"
authors = [
"The C2Rust Project Developers <[email protected]>",
"Stuart Pernsteiner <[email protected]>",
]
license = "BSD-3-Clause"
homepage = "https://c2rust.com/"
repository = "https://github.com/immunant/c2rust"
description = "C2Rust refactoring tool implementation"
edition = "2021"
[dependencies]
diff = "0.1"
json = "0.12"
libc = "0.2"
regex = "1.1"
ena = "0.13"
c2rust-ast-builder = { version = "0.20.0", path = "../c2rust-ast-builder" }
c2rust-ast-printer = { version = "0.20.0", path = "../c2rust-ast-printer" }
indexmap = { version = "1.0.1", features = ["serde-1"] }
cargo = "0.44"
clap = {version = "2.33", features = ["yaml"]}
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.20.0" }
env_logger = "0.10"
log = "0.4"
rlua = "0.17"
slotmap = {version = "0.4", features = ["unstable"]}
derive_more = "0.99"
c2rust-macros = { version = "0.20.0", path = "../c2rust-macros" }
flame = { version = "0.2.2", optional = true }
flamer = { version = "0.4", optional = true }
failure = "0.1"
bincode = "1.0.1"
petgraph = "0.4"
[dev-dependencies]
z3 = "0.4.0"
quickcheck = "0.9.0"
rand = "0.7"
[lib]
name = "c2rust_refactor"
path = "src/lib.rs"
[features]
default = []
profile = ["flame", "flamer"]