2021-11-12 12:05:26 +00:00
|
|
|
[package]
|
|
|
|
|
name = "manifold"
|
2024-08-26 17:36:13 +00:00
|
|
|
version = "6.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"
|
2023-09-26 00:13:02 +00:00
|
|
|
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "chrono"] }
|
2023-08-23 17:37:42 +00:00
|
|
|
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"
|
2023-09-19 11:49:29 +00:00
|
|
|
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"
|
2024-08-26 17:36:13 +00:00
|
|
|
rust-i18n = "3.1.2"
|
2023-08-24 01:28:19 +00:00
|
|
|
serde = "1.0.171"
|
2023-08-23 18:04:05 +00:00
|
|
|
serde_json = "1.0.105"
|
2022-02-16 15:39:24 +00:00
|
|
|
tokio = { version = "1.16.1", features = ["sync", "macros", "rt-multi-thread"] }
|
2024-08-26 17:36:13 +00:00
|
|
|
|
|
|
|
|
[package.metadata.i18n]
|
|
|
|
|
# The available locales for your application, default: ["en"].
|
|
|
|
|
available-locales = ["en", "de"]
|
|
|
|
|
|
|
|
|
|
# The default locale, default: "en".
|
|
|
|
|
default-locale = "en"
|
|
|
|
|
|
|
|
|
|
# Path for your translations YAML file, default: "locales".
|
|
|
|
|
# This config for let `cargo i18n` command line tool know where to find your translations.
|
|
|
|
|
# You must keep this path same as the one you pass to method `rust_i18n::i18n!`.
|
|
|
|
|
load-path = "config/locales"
|