-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 1010 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
33
34
35
36
[package]
name = "crusts"
version = "0.0.6"
edition = "2021"
authors = [
"Michael Ling <michael.ling@huawei.com>",
"Yijun Yu <y.yu@open.ac.uk>",
"Haitao Wu <haitao.wu@huawei.com>",
"Yuan Wang <yuan.wang@huawei.com>",
"James R. Cordy <cordy@cs.queensu.ca>",
"Ahmed E. Hassan <hassan@queensu.ca>",
"Luca Carlig <luca.carlig@huawei.com",
]
description = "CRustS - From Unsafe C to safer Rust"
repository = "https://github.com/trusted-programming/crusts"
documentation = "https://docs.rs/crusts"
keywords = ["rust", "c2rust", "refactoring"]
license = "Apache-2.0"
[dependencies]
reqwest = { version = "0.11", features = ["blocking"] }
jwalk = "0.8"
flate2 = "1.0"
tar = "0.4"
clap = { version = "4.2", features = ["derive"] }
log = "0.4"
dirs = "5.0"
fs_extra = "1.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# rust_hero = { path = "../curs" }
cargo_metadata = "0.15"
fern = { version = "0.6", features = ["colored"] }
[dev-dependencies]
tempfile = "3.6"