manifold/Cargo.toml

31 lines
823 B
TOML
Raw Normal View History

2021-11-12 12:05:26 +00:00
[package]
name = "manifold"
2023-08-23 17:37:42 +00:00
version = "1.0.0"
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"
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"
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 = "0.5.5"
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"
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"] }