-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (78 loc) · 2.29 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (78 loc) · 2.29 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
80
81
82
83
84
[package]
name = "kickable"
authors = ["Hector Gray <defstream@gmail.com>"]
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.6.1"
[features]
complete = []
[dependencies]
anyhow = "1.0.81"
async-std = { version = "1.12.0", features = ["attributes"] }
async-trait = "0.1.77"
axum = "0.8.0"
axum-tracing-opentelemetry = "0.38.0"
clap = { version = "4.5.3", features = ["derive"] }
env_logger = "0.11.3"
exitcode = "1.1.2"
fluent = "0.17.0"
gotham = "0.8.0"
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.32.0"
poem = "3.1.0"
prost = "0.14.0"
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.14.0"
tonic-prost = "0.14.0"
tower = { version = "0.5.0", features = ["util", "timeout", "load-shed", "limit"] }
tower-http = { version = "0.6.0" , features = ["trace"] }
tracing-subscriber = "0.3.18"
unic-langid = { version = "0.9.6", features = ["macros"] }
viz = "0.11.0"
warp = { version = "0.4.0", features = ["server"] }
[dev-dependencies]
assert_cli = "0.6.3"
[build-dependencies]
tonic-prost-build = "0.14.0"
protoc-bin-vendored = "3.2.0"
# buf_redux and multipart are unmaintained and trigger future-incompat lints
# (trailing semicolons in macro expression position, rust-lang/rust#79813).
# buf_redux_ng and multipart_ng are maintained forks that fix these issues
# while keeping identical API and version numbers, so no code changes are needed.
[patch.crates-io]
buf_redux = { path = "vendor/buf_redux" }
multipart = { path = "vendor/multipart" }
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
strip = "debuginfo"