-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathCargo.toml
86 lines (77 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
authors = ["Apollo Developers <[email protected]>"]
categories = ["command-line-interface"]
description = """
Rover is a tool for working with the Apollo GraphQL Registry.
"""
documentation = "https://go.apollo.dev/r/docs"
edition = "2018"
keywords = ["graphql", "cli", "apollo", "graph", "registry"]
license = "MIT"
name = "rover"
readme = "README.md"
repository = "https://github.com/apollographql/rover/"
version = "0.1.7"
resolver = "2"
[[bin]]
name = "rover"
path = "src/bin/rover.rs"
[workspace]
members = [".", "xtask", "crates/*", "installers/binstall"]
[features]
default = ["composition-js"]
# Enable the deno-powered `supergraph compose` command.
# To build without `supergraph compose`, use the
# `--no-default-features` flag.
composition-js = ["harmonizer"]
[dependencies]
# workspace dependencies
binstall = { path = "./installers/binstall" }
houston = { path = "./crates/houston" }
robot-panic = { path = "./crates/robot-panic" }
rover-client = { path = "./crates/rover-client" }
sdl-encoder = { path = "./crates/sdl-encoder" }
sputnik = { path = "./crates/sputnik" }
timber = { path = "./crates/timber" }
# crates.io dependencies
ansi_term = "0.12.1"
anyhow = "1"
atty = "0.2.14"
billboard = { git = "https://github.com/EverlastingBugstopper/billboard.git", branch = "main" }
camino = { version = "1.0.2", features = ["serde1"] }
chrono = "0.4"
console = "0.14.0"
crossterm = "0.20.0"
git-url-parse = "0.3.1"
git2 = { version = "0.13.20", default-features = false, features = ["vendored-openssl"] }
harmonizer = { version = "0.26.0", optional = true }
heck = "0.3.3"
humantime = "2.1.0"
opener = "0.5.0"
os_info = "3.0"
prettytable-rs = "0.8.0"
reqwest = {version = "0.11", default-features = false, features = ["blocking", "brotli", "gzip", "json", "native-tls-vendored"]}
regex = "1"
semver = "1"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.8"
strsim = "0.10"
structopt = "0.3.22"
strum = "0.21.0"
strum_macros = "0.21.1"
termimad = "0.13.0"
toml = "0.5"
tracing = "0.1.26"
url = { version = "2.2.2", features = ["serde"] }
[dev-dependencies]
assert_cmd = "1.0.7"
assert_fs = "1.0.3"
predicates = "2.0.0"
reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "native-tls-vendored"] }
serial_test = "0.5.0"
[build-dependencies]
anyhow = "1"
camino = "1.0"
regex = "1"
which = "4.0.2"