-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 1.06 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
[package]
name = "altaria"
version = "0.4.2"
edition = "2021"
description = "Altaria is an asynchronous, memory-safe, blazingly fast HTTP server written in Rust. It currently supports HTTP1.1 parsing and encoding and HTTP2 parsing."
authors = ["Gabriel <[email protected]>"]
license-file = "LICENSE"
homepage = "https://github.com/SrGaabriel/altaria"
repository = "https://github.com/SrGaabriel/altaria"
[dependencies]
tokio = { version = "1.42.0", features = ["full"] }
async-trait = "0.1.83"
chrono = { version="0.4.38", default-features = false, features = ["clock"] }
anyhow = "1.0.94"
thiserror = "2.0.4"
paste = "1.0.15"
futures = { version = "0.3.31", default-features = false, features = ["std"] }
serde = { version = "1.0.216", features = ["derive"], optional = true, default-features = false }
serde_json = { version = "1.0.74", optional = true, default-features = false }
tracing = { version = "0.1.41", optional = true }
tracing-subscriber = { version = "0.3.19", optional = true }
[features]
json = ["serde", "serde_json"]
logging = ["tracing", "tracing-subscriber"]