forked from cloudwego/volo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
129 lines (121 loc) · 2.42 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[workspace]
members = [
"volo",
"volo-build",
"volo-cli",
"volo-grpc",
"volo-http",
"volo-macros",
"volo-thrift",
"examples",
"examples/volo-gen",
]
resolver = "2"
[workspace.package]
authors = ["Volo Team <volo@cloudwego.io>"]
edition = "2021"
homepage = "https://www.cloudwego.io/docs/volo/"
repository = "https://github.com/cloudwego/volo"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
pilota = "0.10"
pilota-build = "0.10"
pilota-thrift-parser = "0.10"
# pilota = { git = "https://github.com/cloudwego/pilota", branch = "main" }
# pilota-build = { git = "https://github.com/cloudwego/pilota", branch = "main" }
# pilota-thrift-parser = { git = "https://github.com/cloudwego/pilota", branch = "main" }
motore = "0.4"
# motore = { git = "https://github.com/cloudwego/motore", branch = "main" }
metainfo = "0.7"
anyhow = "1"
async-broadcast = "0.6"
async-stream = "0.3"
base64 = "0.21"
bytes = "1"
chrono = { version = "0.4", default-features = false, features = [
"std",
"alloc",
"clock",
] }
clap = "4"
colored = "2"
cookie = "0.18"
dashmap = "5"
dirs = "5"
faststr = "0.2"
futures = "0.3"
futures-util = "0.3"
flate2 = "1"
fxhash = "0.2"
git2 = { version = "0.18", default-features = false }
h2 = "0.4"
heck = "0.4"
hex = "0.4"
http = "1"
http-body = "1"
http-body-util = "0.1"
hyper = "1"
hyper-timeout = "0.5"
hyper-util = "0.1.2"
itertools = "0"
lazy_static = "1"
libc = "0.2"
linkedbytes = "0.1"
linked-hash-map = "0.5"
log = "0.4"
matchit = "0.7"
mime = "0.3"
mur3 = "0.1"
nix = "0.27"
nom = "7"
normpath = "1"
num_enum = "0.7"
once_cell = "1"
parking_lot = "0.12"
paste = "1"
pathdiff = "0.2"
percent-encoding = "2"
pin-project = "1"
pretty_env_logger = "0.5"
proc-macro2 = "1"
quote = "1"
rand = "0.8"
regex = "1"
run_script = "0.10"
same-file = "1"
serde = "1"
serde_html_form = "0.2"
serde_json = "1"
serde_urlencoded = "0.7"
serde_yaml = "0.9"
simdutf8 = "0.1"
socket2 = "0.5"
sonic-rs = "0.3"
syn = "2"
tempfile = "3"
thiserror = "1"
tokio = "1"
tokio-stream = "0.1"
tokio-util = "0.7"
tower = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"
update-informer = "1"
url = "2"
url_path = "0.1"
walkdir = "2"
# Optional dependencies
librustls = { package = "rustls", version = "0.22" }
rustls-pemfile = "2"
tokio-rustls = "0.25"
tokio-native-tls = "0.3"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'
incremental = false
overflow-checks = false