doglinks/server/Cargo.toml
asonix dedd687847
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Bump version
2022-12-29 21:52:41 -06:00

29 lines
772 B
TOML

[package]
name = "doglinks"
version = "0.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = { version = "4", default-features = false, features = [
"compress-gzip",
"compress-brotli",
"macros",
] }
actix-governor = "0.3.2"
actix-web-lab = { version = "0.18.8", features = ["spa"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sled = "0.34.7"
tracing = "0.1"
tracing-actix-web = { version = "0.7.1", features = ["emit_event_on_error"] }
tracing-log = "0.1"
tracing-subscriber = { version = "0.3", features = [
"ansi",
"env-filter",
"fmt",
] }
url = { version = "2", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }