24 lines
842 B
TOML
24 lines
842 B
TOML
[package]
|
|
name = "jean-marie"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = { version = "0.5.16", features = ["headers"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.68"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version="0.3", features = ["env-filter"] }
|
|
uuid = { version = "1.1.2", features = ["v4", "serde"] }
|
|
async-session = "3.0.0"
|
|
askama = "0.11"
|
|
oauth2 = "4.1"
|
|
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
|
|
headers = "0.3"
|
|
http = "0.2"
|
|
tower-http = { version = "0.3.4", features = ["full"] }
|
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "macros", "migrate", "chrono", "json"]}
|