-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
38 lines (36 loc) · 1.18 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
[package]
name = "piping-server"
version = "0.18.1-SNAPSHOT"
authors = ["Ryo Ota <nwtgck@nwtgck.org>"]
edition = "2021"
[dependencies]
clap = { version = "4.1", features = ["derive"] }
anyhow = "1.0"
log = "0.4"
env_logger = "0.10"
futures = { version = "0.3", features = ["std"] }
tokio = { version = "1.38", features = ["rt-multi-thread", "macros", "net"] }
hyper = { version = "1.5", default-features = false, features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1", default-features = false, features = ["server-auto", "tokio"] }
http = "1.1"
http-body = "1.0"
http-body-util = "0.1"
rustls = "0.22"
rustls-pemfile = "2.2"
tokio-rustls = "0.25"
getrandom = { version = "0.2", default-features = false }
base64 = "0.22"
url = { version = "2.5", default-features = false }
mime = "0.3"
mpart-async = { version = "0.7", default-features = false }
notify = "6.1"
dashmap = "6.1"
serde_urlencoded = "0.7"
once_cell = "1.20"
pin-project-lite = "0.2"
auto_enums = { version = "0.8", default-features = false, features = ["http_body1"] }
seq-macro = "0.3"
[dev-dependencies]
specit = { version = "0.4.0", features = ["tokio"] }
hyper = { version = "1.5", features = ["client"] }
regex = "1.11"