-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathCargo.toml
46 lines (40 loc) · 987 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
40
41
42
43
44
45
46
[package]
authors = ["Apollo Developers <opensource@apollographql.com>"]
edition = "2018"
name = "rover"
version = "0.0.1-rc.6"
repository = "https://github.com/apollographql/rover/"
[dependencies]
# workspace deps
binstall = { path = "./installers/binstall" }
houston = { path = "./crates/houston" }
robot-panic = { path = "./crates/robot-panic" }
rover-client = { path = "./crates/rover-client" }
sputnik = { path = "./crates/sputnik" }
timber = { path = "./crates/timber" }
# crates.io deps
anyhow = "1.0.38"
atty = "0.2.14"
ansi_term = "0.12.1"
console = "0.14.0"
heck = "0.3.2"
prettytable-rs = "0.8.0"
serde = "1.0"
serde_json = "1.0"
structopt = "0.3.21"
tracing = "0.1.22"
regex = "1"
url = "2.2.0"
git_info = "0.1.2"
git-url-parse = "0.3.1"
chrono = "0.4"
[dev-dependencies]
assert_cmd = "1.0.1"
assert_fs = "1.0.0"
serial_test = "0.5.0"
predicates = "1.0.5"
[workspace]
members = [".", "crates/*", "installers/binstall"]
[build-dependencies]
anyhow = "1"
which = "4.0.2"