-
Notifications
You must be signed in to change notification settings - Fork 82
/
Cargo.toml
88 lines (85 loc) · 2.22 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
87
88
[package]
name = "railwayapp"
version = "3.18.0"
edition = "2021"
license = "MIT"
authors = ["Railway <[email protected]>"]
description = "Interact with Railway via CLI"
readme = "README.md"
homepage = "https://github.com/railwayapp/cli"
repository = "https://github.com/railwayapp/cli"
rust-version = "1.70.0"
default-run = "railway"
include = ["src/**/*", "LICENSE", "README.md"]
[[bin]]
name = "railway"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.89"
clap = { version = "4.5.19", features = ["derive", "suggestions"] }
colored = "2.1.0"
dirs = "5.0.1"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
reqwest = { version = "0.12.8", default-features = false, features = [
"rustls-tls", "json"
] }
chrono = { version = "0.4.38", features = ["serde"], default-features = false }
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
paste = "1.0.15"
tokio = { version = "1.40.0", features = ["full"] }
clap_complete = "4.5.32"
open = "5.3.0"
inquire = "0.7.5"
hyper = { version = "1.4.1", features = ["server", "http1"] }
hyper-util = { version = "0.1.9", features = ["tokio"] }
base64 = "0.22.1"
http-body-util = "0.1.2"
rand = "0.8.5"
hostname = "0.4.0"
indicatif = "0.17.8"
indoc = "2.0.5"
console = "0.15.8"
box_drawing = "0.1.2"
textwrap = "0.16.1"
gzp = { version = "0.11.3", default-features = false, features = [
"deflate_rust",
] }
tar = "0.4.42"
synchronized-writer = "1.1.11"
ignore = "0.4.23"
num_cpus = "1.16.0"
url = "2.5.2"
futures = { version = "0.3.31", default-features = false, features = [
"compat",
"io-compat",
] }
names = { version = "0.14.0", default-features = false }
graphql-ws-client = { version = "0.10.2", features = [
"client-graphql-client",
"tungstenite",
] }
async-tungstenite = { version = "0.27.0", features = [
"tokio-runtime",
"tokio-rustls-native-certs",
] }
is-terminal = "0.4.13"
serde_with = "3.11.0"
ctrlc = "3.4.5"
which = "6.0.3"
thiserror = "1.0.64"
winapi = { version = "0.3.9", features = [
"minwindef",
"tlhelp32",
"processthreadsapi",
"handleapi",
"winerror",
] }
strum = { version = "0.26.3", features = ["derive"] }
structstruck = "0.4.1"
derive-new = "0.7.0"
regex = "1.11.0"
[profile.release]
lto = "fat"
opt-level = "z"
panic = "abort"