-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (42 loc) · 1.38 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
[package]
name = "ftl"
version = "0.1.0"
authors = ["novacrazy <[email protected]>"]
edition = "2021"
[features]
default = ["json", "cbor"]
json = ["serde_json", "v_jsonescape"]
cbor = ["ciborium"]
brotli = ["async-compression/brotli"]
[dependencies]
tokio = { version = "1.4", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
tokio-stream = "0.1.14"
hyper = { version = "1", features = ["http1", "http2", "server"] }
tokio-tungstenite = "0.23"
http = "1"
hyper-util = { version = "0.1.2", features = ["tokio"] }
http-body-util = "0.1.0"
async-compression = { version = "0.4", features = ["deflate", "gzip", "tokio"] }
multipart = { optional = true, version = "0.18.0", default-features = false, features = ["server"] }
serde = { version = "1", features = ["derive"] }
serde_urlencoded = "0.7"
percent-encoding = "2.1"
mime = "0.3.16"
mime_guess = "2.0.3"
url = "2.2.0"
futures = "0.3"
tracing = { version = "0.1", default-features = false, features = ["log", "std"] }
thiserror = "1.0.23"
bytes = "1.0.1"
pin-project-lite = "0.2.8"
scc = "2.0"
either = { version = "1.6.0", optional = true }
v_jsonescape = { version = "0.7", optional = true }
serde_json = { version = "1", optional = true }
ciborium = { version = "0.2", optional = true }
pin-project = "1.1.3"
[dependencies.headers]
version = "0.4"
[patch.crates-io]
headers = { git = "https://github.com/novacrazy/headers" }