-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (31 loc) · 807 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
37
38
39
[package]
name = "salmagundi"
version = "0.1.0"
authors = ["Alexander Ronald Altman <[email protected]>"]
edition = "2018"
[build-dependencies.pkg-config]
version = "0.3.14"
optional = true
[dependencies.either]
version = "1.5.0"
[dependencies.quote]
version = "0.6.8"
default-features = false
optional = true
[dependencies.rand]
version = "0.5.5"
features = ["i128_support"]
[dependencies.regex]
version = "1.0.5"
[dependencies.structopt]
version = "0.2.11"
features = ["suggestions", "color", "wrap_help"]
[dependencies.syn]
version = "0.15.9"
default-features = false
features = ["full", "parsing", "printing", "clone-impls", "extra-traits", "visit", "visit-mut", "fold"]
optional = true
[features]
default = ["rust-support"]
cfamily-support = ["pkg-config"]
rust-support = ["quote", "syn"]