gabrielsimmer.com/Cargo.toml

29 lines
1 KiB
TOML
Raw Normal View History

[package]
name = "quick-start"
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.6.18", features = ["json"] }
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls", "sqlite" ] }
serde = { version = "1.0.167", features = ["derive"] }
tokio = { version = "1.29.1", features = ["full"] }
maud = { version = "*", features = ["axum"] }
2023-07-20 14:59:50 +01:00
tower = { version = "0.4.13", features = ["util"] }
hyper = { version = "0.14", features = ["full"] }
2023-07-20 14:59:50 +01:00
tower-http = { version = "0.4.1", features = ["fs", "add-extension", "auth", "compression-full", "trace"] }
sha2 = "0.10.7"
hex = "0.4"
lazy_static = "1.4.0"
futures = "0.3.28"
comrak = "0.1"
2023-08-13 19:50:36 +01:00
orgize = { git = "https://git.gmem.ca/arch/orgize.git", branch = "org-images" }
2023-07-31 11:50:55 +01:00
clap = { version = "4.0", features = ["derive"] }
2023-07-31 15:22:36 +01:00
serde_dhall = "0.12.1"
2023-08-13 19:50:36 +01:00
frontmatter = "0.4.0"
2023-09-22 11:31:49 +01:00
file-format = "0.18.0"
2023-09-22 13:10:44 +01:00
rss = "2.0.6"
time = { version = "0.3.28", features = ["parsing", "formatting", "macros"] }
async-trait = "0.1.73"