manifold/Cargo.toml

27 lines
789 B
TOML
Raw Normal View History

2021-11-12 12:05:26 +00:00
[package]
name = "manifold"
version = "0.1.0"
authors = ["Lucy Bladen <admin@jbladen.uk>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
built = { version = "0.5.1", features = ["git2", "chrono"] }
[dependencies]
built = { version = "0.5.1", features = ["git2", "chrono"] }
clap = "2.33.3"
diesel = { version = "1.4.8", features = ["sqlite", "r2d2", "chrono"] }
diesel_migrations = "1.4.0"
env_logger = "0.9.0"
log = "0.4.14"
r2d2 = "0.8.9"
rand = "0.8.4"
regex = "1.5.4"
reqwest = "0.11.6"
2021-11-12 13:56:05 +00:00
serde = "1.0.130"
2021-11-12 12:05:26 +00:00
serde_json = "1.0.69"
2022-02-16 00:55:59 +00:00
serenity = { version = "0.10", features = [ "collector", "unstable_discord_api" ] }
2021-11-12 12:05:26 +00:00
tokio = { version = "1.13.0", features = ["sync", "macros", "rt-multi-thread"] }