forked from volta-cli/volta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (54 loc) · 1.17 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "notion"
version = "0.1.5"
authors = ["David Herman <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/notion-cli/notion"
[features]
universal-docs = ["notion-core/universal-docs"]
mock-network = ["mockito", "notion-core/mock-network"]
notion-dev = []
smoke-tests = []
[[bin]]
name = "notion"
path = "src/notion.rs"
[[bin]]
name = "node"
path = "src/node.rs"
[[bin]]
name = "npm"
path = "src/npm.rs"
[[bin]]
name = "npx"
path = "src/npx.rs"
[[bin]]
name = "yarn"
path = "src/yarn.rs"
[[bin]]
name = "launchbin"
path = "src/launchbin.rs"
[[bin]]
name = "launchscript"
path = "src/launchscript.rs"
[dependencies]
docopt = "0.8"
notion-core = { path = "crates/notion-core" }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0.26"
console = "0.6.1"
failure_derive = "0.1.1"
failure = "0.1.1"
notion-fail = { path = "crates/notion-fail" }
notion-fail-derive = { path = "crates/notion-fail-derive" }
reqwest = "0.8.5"
semver = "0.9.0"
result = "1.0.0"
rand = "0.5"
cfg-if = "0.1"
mockito = { version = "0.14.0", optional = true }
test-support = { path = "crates/test-support" }
[dev-dependencies]
hamcrest2 = "0.2.3"
envoy = "0.1.3"
[workspace]