forked from sozu-proxy/sozu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
74 lines (69 loc) · 1.81 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 = "sozu-lib"
description = "sozu library to build hot reconfigurable HTTP reverse proxies"
repository = "https://github.com/sozu-proxy/sozu"
readme = "README.md"
documentation = "https://docs.rs/sozu-lib"
homepage = "https://sozu.io"
version = "0.15.17"
license = "AGPL-3.0"
authors = [
"Clément Delafargue <[email protected]>",
"Geoffroy Couprie <[email protected]>",
"Eloi Demolis <[email protected]>",
"Emmanuel Bosquet <[email protected]>",
"Florentin Dubois <[email protected]>",
]
categories = ["network-programming"]
edition = "2021"
rust-version = "1.70.0"
include = [
"./README.md",
"Cargo.toml",
"src/**/*",
"/examples/main.rs",
"/examples/minimal.rs",
"assets/certificate.pem",
"assets/certificate_chain.pem",
"assets/key.pem",
]
[dependencies]
anyhow = "^1.0.75"
cookie-factory = "^0.3.2"
hdrhistogram = "^7.5.2"
hex = "^0.4.3"
hpack = "^0.3.0"
idna = "^0.4.0"
kawa = { version = "^0.6.4", default-features = false }
libc = "^0.2.149"
memchr = "^2.6.4"
mio = { version = "^0.8.8", features = ["os-poll", "os-ext", "net"] }
nom = { version = "^7.1.3", default-features = true, features = ["std"] }
poule = "^0.3.2"
rand = "^0.8.5"
regex = "^1.10.0"
rustls = "^0.21.7"
rustls-pemfile = "^1.0.3"
rusty_ulid = "^2.0.0"
sha2 = "^0.10.8"
slab = "^0.4.9"
socket2 = { version = "^0.5.4", features = ["all"] }
thiserror = "^1.0.49"
time = "^0.3.29"
once_cell = "1.18.0"
sozu-command-lib = { path = "../command", version = "^0.15.17" }
[dev-dependencies]
quickcheck = "^1.0.3"
rand = "^0.8.5"
serial_test = "^2.0.0"
tiny_http = "^0.12.0"
[features]
default = ["simd"]
logs-debug = []
logs-trace = []
simd = ["kawa/simd"]
splice = []
tolerant-http1-parser = ["kawa/tolerant-parsing"]
unstable = []
[badges]
travis-ci = { repository = "sozu-proxy/sozu" }