-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
74 lines (69 loc) · 1.79 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 = "kickable"
authors = ["Hector Gray <[email protected]>"]
description = "kickable is a crate created to answer the age old question... Can I kick it?"
documentation = "https://docs.rs/kickable"
edition = "2021"
exclude = [
"src/bin/deprecated",
"scripts",
"score",
"*.hcl",
"docker",
"depot.json",
"cloudbuild.yaml",
"buildspec.yml",
"renovate.json",
"bob.yaml",
".changes",
".*",
]
keywords = ["kick", "kickable", "it", "can"]
license = "CC0-1.0"
readme = "README.md"
repository = "https://github.com/defstream/kickable-rs"
version = "0.5.40"
[features]
complete = []
[dependencies]
anyhow = "1.0.81"
async-std = { version = "1.12.0", features = ["attributes"] }
async-trait = "0.1.77"
axum = "0.7.4"
axum-tracing-opentelemetry = "0.18.0"
clap = { version = "4.5.3", features = ["derive"] }
env_logger = "0.11.3"
exitcode = "1.1.2"
fluent = "0.16.0"
gotham = "0.7.3"
graphul = "1.0.1"
hyper = { version = ">=0.14.28", features = ["http1", "http2", "runtime", "server", "stream"] }
log = "0.4.21"
once_cell = "1.19.0"
opentelemetry = "0.22.0"
poem = "2.0.1"
prost = "0.12.3"
rocket = "0.5.0"
rouille = "3.6.2"
rust-embed = "8.3.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_yaml = "0.9.32"
time = { version = ">=0.3.34" }
tokio = { version = "1.36.0", features = ["full"] }
tonic = "0.11.0"
tower = { version = "0.4.13", features = ["util", "timeout", "load-shed", "limit"] }
tower-http = { version = "0.5.2" , features = ["trace"] }
tracing-subscriber = "0.3.18"
unic-langid = { version = "0.9.4", features = ["macros"] }
viz = "0.4.17"
warp = "0.3.6"
[dev-dependencies]
assert_cli = "0.6.3"
[build-dependencies]
tonic-build = "0.11.0"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
strip = "debuginfo"