-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 803 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 803 Bytes
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
[package]
name = "litebin"
version = "0.1.0-dev"
authors = [ "azdle <azdle@azdle.net>" ]
edition = "2021"
description = "A lightweight HTTP request & response server."
repository = "https://github.com/azdle/litebin"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
axum = "0.8"
futures-util = "0.3"
hyper = "1"
maud = { version = "0.27", features = ["axum"] }
pin-project = "1.1.0"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
thiserror = "2"
tokio = { version = "1.28.2", features = ["full"] }
tokio-stream = "0.1"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features =["env-filter"] }
[dev-dependencies]
reqwest = "0.12"
test-log = { version = "0.2.12", default-features = false, features = ["trace"] }