37 lines
752 B
TOML
37 lines
752 B
TOML
|
[package]
|
||
|
name = "sleutel"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
# Runtime
|
||
|
tokio = { version = "1", features = ["full"] }
|
||
|
|
||
|
# Web
|
||
|
axum = { version = "0.6", features = ["headers", "tracing"] }
|
||
|
hyper = { version = "0.14", features = ["full"] }
|
||
|
|
||
|
# Tracing
|
||
|
tracing = "0.1"
|
||
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"]}
|
||
|
|
||
|
# Data
|
||
|
serde = { version = "1", features = ["derive"]}
|
||
|
serde_json = "1"
|
||
|
|
||
|
# Error Handling
|
||
|
eyre = "0.6"
|
||
|
thiserror = "1.0"
|
||
|
snafu = "0.7"
|
||
|
|
||
|
# JWx
|
||
|
jsonwebtoken = "9"
|
||
|
|
||
|
# Misc
|
||
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
||
|
ulid = { version = "1.1", features = ["serde"] }
|
||
|
|
||
|
|