manifold/Cargo.toml

33 lines
895 B
TOML
Raw Normal View History

2021-11-12 12:05:26 +00:00
[package]
name = "manifold"
version = "4.0.0"
2023-08-23 17:37:42 +00:00
authors = ["Lucy Bladen <admin@lbladen.uk>"]
2021-11-12 12:05:26 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
2023-08-23 17:37:42 +00:00
built = { version = "0.6.0", features = ["git2", "chrono"] }
2021-11-12 12:05:26 +00:00
[dependencies]
2023-08-23 17:37:42 +00:00
built = { version = "0.6.0", features = ["git2", "chrono"] }
chrono = "0.4.26"
2023-08-24 09:27:15 +00:00
chrono-tz = "0.8.3"
2023-08-23 17:37:42 +00:00
clap = "4.3.4"
2022-07-17 23:25:59 +00:00
config = { version = "0.13.1", features = [ "yaml" ] }
2023-08-23 17:37:42 +00:00
d20 = "0.1.0"
diesel = { version = "2.1.0", features = ["sqlite", "r2d2", "chrono"] }
diesel_migrations = "2.1.0"
2023-08-24 21:39:38 +00:00
dirs = "5.0.1"
2023-08-23 17:37:42 +00:00
env_logger = "0.10.0"
2021-11-12 12:05:26 +00:00
log = "0.4.14"
2023-08-23 17:37:42 +00:00
num = "0.4.1"
poise = { version = "0.5.*", features = [ "cache" ] }
2021-11-12 12:05:26 +00:00
r2d2 = "0.8.9"
2022-02-16 15:39:24 +00:00
rand = "0.8.5"
2021-11-12 12:05:26 +00:00
regex = "1.5.4"
2022-02-16 15:39:24 +00:00
reqwest = "0.11.9"
2023-08-24 01:28:19 +00:00
serde = "1.0.171"
serde_json = "1.0.105"
2022-02-16 15:39:24 +00:00
tokio = { version = "1.16.1", features = ["sync", "macros", "rt-multi-thread"] }