This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
74 lines (71 loc) · 1.97 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
[package]
name = "railwayapp"
version = "0.0.16"
edition = "2021"
license = "MIT"
authors = ["Railway <[email protected]>"]
description = "Interact with Railway via CLI"
readme = "README.md"
homepage = "https://github.com/railwayapp/cliv3"
repository = "https://github.com/railwayapp/cliv3"
rust-version = "1.67.1"
default-run = "railway"
[[bin]]
name = "railway"
path = "src/main.rs"
[[bin]]
name = "rlwy"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.69"
clap = { version = "4.1.6", features = ["derive", "suggestions"] }
colored = "2.0.0"
dirs = "4.0.0"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
reqwest = { version = "0.11.14", default-features = false, features = [
"rustls-tls",
] }
chrono = { version = "0.4.23", features = ["serde"], default-features = false }
graphql_client = { version = "0.11.0", features = ["reqwest-rustls"] }
paste = "1.0.11"
tokio = { version = "1.25.0", features = ["full"] }
clap_complete = "4.1.3"
open = "3.2.0"
inquire = "0.5.3"
tui = "0.19.0"
crossterm = "0.26.0"
hyper = { version = "1.0.0-rc.3", features = ["server", "http1"] }
base64 = "0.21.0"
http-body-util = "0.1.0-rc.2"
rand = "0.8.5"
hostname = "0.3.1"
indicatif = "0.17.3"
indoc = "2.0.0"
console = "0.15.5"
box_drawing = "0.1.2"
textwrap = "0.16.0"
gzp = { version = "0.11.3", default-features = false, features = [
"deflate_rust",
] }
tar = "0.4.38"
synchronized-writer = "1.1.11"
ignore = "0.4.20"
num_cpus = "1.15.0"
url = "2.3.1"
futures = { version = "0.3.26", default-features = false, features = [
"compat",
"io-compat",
] }
tokio-stream = { version = "0.1.12", default-features = false, features = [
"sync",
] }
uuid = { version = "1.3.0", features = ["serde", "v4"] }
httparse = "1.8.0"
names = { version = "0.14.0", default-features = false }
graphql-ws-client = { version = "0.3.0", features = ["client-graphql-client"] }
async-tungstenite = { version = "0.18.0", features = [
"tokio-runtime",
"tokio-rustls-native-certs",
] }
is-terminal = "0.4.4"