-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathCargo.toml
105 lines (95 loc) · 2.74 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
workspace = { members = ["temboclient", "tembodataclient"] }
[package]
name = "tembo-cli"
version = "0.20.8"
edition = "2021"
authors = ["Tembo.io"]
description = "The CLI for Tembo"
homepage = "https://www.tembo.io"
license = "MIT"
readme = "README.md"
repository = "https://github.com/tembo-io/tembo-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "tembo"
path = "src/main.rs"
[lib]
name = "tembo"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.71"
actix-web = "4.5.1"
actix-service = "2.0.2"
webbrowser = "0.8.12"
clap = { version = "4.3.12", features = ["cargo", "wrap_help", "derive"] }
futures = "0.3.30"
actix-cors = "0.7.0"
clap_complete = "4.3.2"
serde = { version = "1.0", features = ["derive"] }
prettytable-rs = "0.10.0"
serde_json = "1.0.91"
crossterm = "0.27.0"
serde_yaml = "0.9.17"
home = "0.5.5"
semver = "1.0.18"
mockall = "0.11.4"
toml = "0.8.19"
chrono = { version = "0.4.29", features = ["serde"] }
simplelog = { version = "^0.12.1", features = ["paris"] }
clerk-rs = "0.1.7"
jsonwebtoken = "8.3.0"
reqwest = { version = "^0.11", default-features = false, features = [
"cookies",
"default-tls",
"blocking",
] }
hyper = "0.14.27"
rpassword = "7.2.0"
jwt = "0.16.0"
dateparser = "0.2.0"
log = "0.4.20"
tera = "1.18.1"
curl = "0.4.44"
temboclient = { version = "1.0.4", path = "temboclient" }
tembodataclient = { version = "0.0.2", path = "tembodataclient" }
tokio = { version = "1.26.0", features = [
"rt",
"rt-multi-thread",
"macros",
"sync",
] }
tungstenite ="0.21.0"
futures-util = "0.3.30"
dirs = "5.0.1"
controller = "0.50.1"
sqlx = { version = "0.8.2", features = ["runtime-tokio-native-tls", "postgres", "chrono", "json"] }
base64 = "0.21.5"
colorful = "0.2.2"
cli-table = "0.4.7"
tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] }
tiny-gradient = "0.1.0"
urlencoding = "2.1.3"
spinoff = "0.8.0"
k8s-openapi = { version = "0.18.0", features = ["v1_25", "schemars"], default-features = false }
tembo-stacks = "0.16.7"
itertools = "0.12.1"
random-string = "1.1.0"
test-case = "=2.0.0-rc2"
clap-markdown = { git = "https://github.com/tembo-io/clap-markdown.git", branch = "main", version = "0.1.3" }
url = "2.5.0"
rand = "0.8.5"
sqlx-cli = "0.8.2"
[target.aarch64-unknown-linux-musl.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[target.aarch64-apple-darwin.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[target.x86_64-apple-darwin.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[target.x86_64-pc-windows-msvc.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[dev-dependencies]
assert_cmd = "2.0.8"
predicates = "2.1.5"
rstest = "0.18"
[env]
RUST_TEST_THREADS = "1"