-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 1.02 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
[package]
name = "thinline"
version = "0.4.1"
authors = ["Sebastian Spiess <[email protected]>"]
repository = "https://github.com/Drogglbecher/thinline"
readme = "README.md"
license = "Apache-2.0"
description = "A parser and builder for function-unittests written in comment sections for C-language family & python."
[lib]
name = "thinlinelib"
[features]
runtime = ["clang-sys/runtime"]
static = ["clang-sys/static"]
clang_5_0 = ["clang-sys/clang_5_0", "gte_clang_5_0"]
clang_6_0 = ["clang-sys/clang_6_0", "gte_clang_5_0", "gte_clang_6_0"]
gte_clang_5_0 = []
gte_clang_6_0 = []
[dependencies]
clang = "0.20.0"
clang-sys = "0.23.0"
clap = { version = "2.32.0", features = ["yaml"] }
clippy = { version = "0.0.302", optional = true }
directories = "1.0.2"
env_logger = "0.5.13"
failure = "0.1.3"
glob = "0.2.11"
lazy_static = "1.1.0"
log = "0.4.5"
python-parser = "0.1.0"
regex = "1.0.5"
run_script = "0.1.20"
serde = "1.0.80"
serde_derive = "1.0.80"
slog-envlogger = "2.1.0"
snapshot = "0.1.0"
walkdir = "2.2.5"
yaml-rust = "0.4.2"