forked from immunant/c2rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (46 loc) · 1.25 KB
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
50
[package]
name = "c2rust-refactor"
version = "0.16.0"
authors = [
"The C2Rust Project Developers <c2rust@immunant.com>",
"Stuart Pernsteiner <spernsteiner@galois.com>",
]
build = "build.rs"
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.16.0", path = "../c2rust-ast-builder" }
c2rust-ast-printer = { version = "0.16.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" }
env_logger = "0.7"
log = "0.4"
rlua = "0.17"
slotmap = {version = "0.4", features = ["unstable"]}
derive_more = "0.99"
c2rust-macros = { version = "0.16.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"]