2023-08-23 14:39:19 +00:00
|
|
|
[package]
|
|
|
|
|
name = "badgey"
|
2024-10-07 23:07:19 +00:00
|
|
|
version = "4.1.0"
|
2023-08-23 14:39:19 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
built = { version = "0.6.0", features = ["git2", "semver", "chrono"] }
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
built = { version = "0.6.0", features = ["git2", "semver", "chrono"] }
|
|
|
|
|
clap = { version = "4.3.23", features = ["cargo"] }
|
2023-09-26 01:01:12 +00:00
|
|
|
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "chrono"] }
|
2023-09-24 22:55:18 +00:00
|
|
|
diesel_migrations = "2.1.0"
|
2023-08-23 14:39:19 +00:00
|
|
|
env_logger = "0.10.0"
|
|
|
|
|
log = "0.4.20"
|
2024-10-19 15:22:11 +00:00
|
|
|
#manifold = { git = "https://code.orbiter-radio.uk/discord/manifold.git" }
|
|
|
|
|
manifold = { path = "/home/xyon/Workspace/manifold/" }
|
2023-09-19 11:54:00 +00:00
|
|
|
poise = { version = "0.5.*", features = [ "cache" ] }
|
2023-09-24 22:55:18 +00:00
|
|
|
rand = { version = "0.8.5", features = [ "small_rng" ] }
|
2023-09-27 09:39:55 +00:00
|
|
|
regex = "1.9.5"
|
2024-08-26 18:57:34 +00:00
|
|
|
rust-i18n = "3.1.2"
|
2023-08-23 14:39:19 +00:00
|
|
|
tokio = { version = "1.16.1", features = ["sync", "macros", "rt-multi-thread"] }
|
2024-10-19 15:22:11 +00:00
|
|
|
url = "2.5.2"
|
2024-08-26 18:57:34 +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"
|