-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (29 loc) · 844 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
[package]
name = "stateful"
version = "0.1.0"
authors = ["Erick Tryzelaar <[email protected]>"]
[lib]
name = "stateful"
plugin = true
[features]
default = ["unstable"]
impl_trait = []
unstable = []
# clippy us currently broken on rustc 1.16.0-nightly (4ecc85beb 2016-12-28)
#unstable-testing = ["clippy", "compiletest_rs", "impl_trait"]
unstable-testing = ["compiletest_rs", "impl_trait"]
[dependencies]
aster = "0.*"
bit-vec = "0.4.3"
clippy = { version = "0.*", optional = true }
compiletest_rs = { version = "^0.2.1", optional = true }
dot = { git = "https://github.com/erickt/dot-rust", branch = "develop" }
futures = "0.1.1"
futures-cpupool = "0.1.1"
tokio-timer = { git = "https://github.com/tokio-rs/tokio-timer" }
[[example]]
name = "generator"
path = "examples/generator.rs"
[[test]]
name = "test"
path = "tests/test.rs"