rowt/Cargo.toml

35 lines
960 B
TOML
Raw Normal View History

2023-02-08 16:25:06 +01:00
[package]
name = "rot"
version = "0.1.0"
edition = "2021"
2023-06-28 14:06:28 +02:00
[features]
2023-07-16 20:07:38 +02:00
default = ["rest", "rowing-tera" ]
2023-06-28 14:06:28 +02:00
rowing-tera = ["rocket_dyn_templates", "tera"]
2023-07-16 18:42:59 +02:00
rest = []
2023-02-08 16:25:06 +01:00
[dependencies]
2023-11-22 14:05:05 +01:00
rocket = { version = "0.5.0", features = ["secrets"]}
2024-06-05 14:57:28 +02:00
rocket_dyn_templates = {version = "0.2", features = [ "tera" ], optional = true }
2023-03-04 11:20:12 +01:00
log = "0.4"
2024-02-13 23:25:08 +01:00
env_logger = "0.11"
sqlx = { version = "0.7", 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"]}
2024-04-09 11:24:38 +02:00
chrono-tz = "0.9"
2023-06-28 14:06:28 +02:00
tera = { version = "1.18", features = ["date-locale"], optional = true}
2023-06-05 14:43:31 +02:00
ics = "0.5"
futures = "0.3"
2024-01-01 15:50:06 +01:00
lettre = "0.11"
csv = "1.3"
2024-06-05 14:57:28 +02:00
itertools = "0.13"
2024-04-30 11:59:33 +02:00
job_scheduler_ng = "2.0"
ureq = { version = "2.9", features = ["json"] }
regex = "1.10"
2024-08-18 21:46:11 +02:00
urlencoding = "2.1"
2024-01-01 15:50:06 +01:00
2024-01-01 17:51:23 +01:00
[target.'cfg(not(windows))'.dependencies]
openssl = { version = "0.10", features = [ "vendored" ] }