rowt/Cargo.toml

20 lines
642 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-04-03 17:32:41 +02:00
rocket = { version = "0.5.0-rc.3", features = ["secrets"]}
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-05-10 09:04:09 +02:00
sqlx = { version = "0.6", features = ["sqlite", "runtime-tokio-rustls", "macros", "chrono", "time"] }
2023-04-03 16:11:26 +02:00
argon2 = "0.5"
2023-04-03 17:32:41 +02:00
serde = { version = "1.0", features = [ "derive" ]}
serde_json = "1.0"
2023-04-04 12:19:56 +02:00
chrono = { version = "0.4", features = ["serde"]}
tera = { version = "1.18", features = ["date-locale"]}
2023-04-18 12:13:26 +02:00
rss = "2.0"