-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
87 lines (81 loc) · 2.27 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
[package]
name = "zoo"
version = "0.2.88"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
async-trait = "0.1.83"
base64 = "0.22.1"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
clap = { version = "4.5.20", features = ["cargo", "derive", "env", "unicode", "help", "wrap_help"] }
clap_complete = { version = "4.5.37" }
cli-macro = { path = "cli-macro" }
colored = "2.1.0"
colored_json = "4.1"
data-encoding = "2.6.0"
dialoguer = "0.11.0"
dirs = "5"
git_rev = "0.1.0"
heck = "0.5.0"
http = "1"
itertools = "0.12.1"
kcl-lib = { version = "0.2.24", features = ["disable-println"] }
kcl-test-server = "0.1.16"
kittycad = { version = "0.3.25", features = ["clap", "tabled", "requests", "retry"] }
kittycad-modeling-cmds = { version = "0.2.72", features = ["websocket", "convert_client_crate", "tabled"] }
log = "0.4.22"
nu-ansi-term = "0.50.1"
num-traits = "0.2.19"
oauth2 = "4.4.2"
open = "5.3.0"
parse-display = "0.10.0"
pulldown-cmark = "0.9.2"
pulldown-cmark-to-cmark = "11.0.2"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
ring = "0.17.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
shlex = "1.3.0"
slog = "2"
slog-async = "2"
slog-scope = "4"
slog-stdlog = "4"
slog-term = "2"
tabled = { version = "0.16.0", features = ["ansi"] }
tabwriter = "1.4.0"
terminal_size = "0.4.0"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
toml = "0.8.19"
toml_edit = "0.22.22"
unicode-segmentation = "1.12.0"
url = "2.5.3"
uuid = { version = "1.11", features = ["serde", "v4"] }
version-compare = "0.2.0"
viuer = { version = "0.9.1", features = ["print-file"] }
[build-dependencies]
built = "0.7"
[dev-dependencies]
expectorate = "1.1.0"
futures = "0.3"
pretty_assertions = "1"
serial_test = "3.1.1"
tempfile = "3.14.0"
test-context = "0.1.4"
[workspace]
members = [
"cli-macro",
"cli-macro-impl",
]
[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
[profile.release]
incremental = true
# Set this to 1 or 2 to get more useful backtraces in debugger.
debug = 0