rowt/Cargo.toml

15 lines
386 B
TOML
Raw Normal View History

2023-02-08 16:25:06 +01:00
[package]
name = "rot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-03-26 14:40:56 +02:00
rocket = { version = "0.5.0-rc.3"}
2023-03-26 16:58:45 +02:00
rocket_dyn_templates = {version = "0.1.0-rc.3", features = [ "tera" ] }
2023-03-04 11:20:12 +01:00
log = "0.4"
env_logger = "0.10"
2023-03-26 16:58:45 +02:00
sqlx = { version = "0.6", features = ["sqlite", "runtime-tokio-rustls"] }