-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (76 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
79 lines (76 loc) · 2.13 KB
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.3.51"
description = "Tower is the best way to host Python data apps in production"
rust-version = "1.81"
authors = ["Brad Heller <brad@tower.dev>"]
license = "MIT"
repository = "https://github.com/tower/tower-cli"
[workspace.dependencies]
aes-gcm = "0.10"
anyhow = "1.0.95"
async-compression = { version = "0.4", features = ["tokio", "gzip"] }
async-trait = "0.1.89"
async_zip = { version = "0.0.16", features = ["tokio", "tokio-fs", "deflate"] }
axum = "0.8.4"
base64 = "0.22"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
cli-table = "0.4"
colored = "2"
config = { path = "crates/config" }
crypto = { path = "crates/crypto" }
ctrlc = "3"
dirs = "5"
fs2 = "0.4"
futures = "0.3"
futures-util = "0.3"
futures-lite = "2.6"
glob = "0.3"
hex = "0.4"
http = "1.1"
indicatif = "0.17"
nix = { version = "0.30", features = ["signal"] }
pem = "3"
pyo3 = { version = "0.28", features = ["extension-module"] }
promptly = "0.3"
rand = "0.8"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
reqwest-eventsource = { version = "0.6" }
rpassword = "7"
rsa = "0.9"
seahash = "4.1"
serde = "1"
serde_json = "1.0"
sha2 = "0.10"
snafu = "0.7"
spinners = "4"
testutils = { path = "crates/testutils" }
tmpdir = "1.0"
tokio = { version = "1", features = ["full"] }
tokio-pipe = "0.2"
tokio-stream = { version = "0.1.11", features = ["net"] }
tokio-tar = "0.3"
tokio-util = "0.7"
toml = "0.8"
toml_edit = "0.22"
tower-api = { path = "crates/tower-api" }
tower-cmd = { path = "crates/tower-cmd" }
tower-package = { path = "crates/tower-package" }
tower-runtime = { path = "crates/tower-runtime" }
tower-telemetry = { path = "crates/tower-telemetry" }
tower-uv = { path = "crates/tower-uv" }
tracing = { version = "0.1" }
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
url = { version = "2", features = ["serde"] }
webbrowser = "1"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"