-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (40 loc) · 1.13 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
workspace = {members = ["switch-sys"]}
[package]
name = "mod_rustit"
version = "0.1.0"
edition = "2021"
publish = ["rsproxy"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
switch-sys = { path = "./switch-sys" }
libc = "0.2.151"
lazy_static="1.4"
futures = "0.3.30"
tonic = "0.10"
prost = "0.12"
tokio = { version = "1.35", features = ["macros", "rt-multi-thread", "sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7.3", features = ["codec"] }
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"]}
paste = { version = "1.0.14" }
md5 = "0.7.0"
reqwest = { version = "0.11.24", features=["rustls-tls","blocking", "gzip", "brotli", "deflate", "multipart", "stream"], default-features = false}
chrono = { version = "0.4.34" }
regex = { version = "1" }
rand = "0.8.5"
redb = "1.5.1"
prost-types = "0.12.3"
axum = "0.7.5"
[build-dependencies]
tonic-build = "0.10"
[profile.release]
strip = true
lto = true
[lib]
crate-type = ["dylib"]
name = "mod_rustit"
path = "src/mod_rustit.rs"
[features]
codegen = []
proto = []