23 lines
640 B
TOML
23 lines
640 B
TOML
[package]
|
|
name = "tablejohn"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.72"
|
|
askama = { version = "0.12.0", features = ["with-axum"] }
|
|
askama_axum = "0.3.0"
|
|
axum = { version = "0.6.19", features = ["macros"] }
|
|
clap = { version = "4.3.19", features = ["derive", "deprecated"] }
|
|
mime_guess = "2.0.4"
|
|
rust-embed = "6.8.1"
|
|
sqlx = { version = "0.7.1", features = ["runtime-tokio", "sqlite"] }
|
|
tokio = { version = "1.29.1", features = ["full"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
|
|
[build-dependencies]
|
|
walkdir = "2.3.3"
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|