2020-08-06 14:22:13 +00:00
|
|
|
[package]
|
2023-05-07 19:38:08 +00:00
|
|
|
name = "reminder-rs"
|
2023-07-22 14:06:53 +00:00
|
|
|
version = "1.6.20"
|
2023-03-24 17:44:43 +00:00
|
|
|
authors = ["Jude Southworth <judesouthworth@pm.me>"]
|
2022-12-10 15:38:21 +00:00
|
|
|
edition = "2021"
|
2023-05-07 19:38:08 +00:00
|
|
|
license = "AGPL-3.0 only"
|
|
|
|
description = "Reminder Bot for Discord, now in Rust"
|
2020-08-06 14:22:13 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-18 09:47:31 +00:00
|
|
|
poise = "0.5.5"
|
2020-08-06 14:22:13 +00:00
|
|
|
dotenv = "0.15"
|
2021-02-21 12:26:49 +00:00
|
|
|
tokio = { version = "1", features = ["process", "full"] }
|
2021-02-11 23:30:44 +00:00
|
|
|
reqwest = "0.11"
|
2022-08-14 15:22:00 +00:00
|
|
|
lazy-regex = "2.3.0"
|
|
|
|
regex = "1.6"
|
2020-10-18 16:26:07 +00:00
|
|
|
log = "0.4"
|
2023-03-24 17:44:43 +00:00
|
|
|
env_logger = "0.10"
|
2020-08-18 19:09:21 +00:00
|
|
|
chrono = "0.4"
|
2022-11-20 12:20:10 +00:00
|
|
|
chrono-tz = { version = "0.8", features = ["serde"] }
|
2020-10-18 16:26:07 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
num-integer = "0.1"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2021-09-16 14:42:50 +00:00
|
|
|
serde_repr = "0.1"
|
2022-09-08 16:58:05 +00:00
|
|
|
rmp-serde = "1.1"
|
2022-08-14 15:22:00 +00:00
|
|
|
rand = "0.8"
|
2020-12-17 19:59:02 +00:00
|
|
|
levenshtein = "1.0"
|
2023-03-24 11:11:51 +00:00
|
|
|
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "chrono", "migrate"]}
|
2023-06-20 07:50:12 +00:00
|
|
|
base64 = "0.21.0"
|
2020-10-26 11:10:00 +00:00
|
|
|
|
2022-02-06 15:47:59 +00:00
|
|
|
[dependencies.postman]
|
|
|
|
path = "postman"
|
|
|
|
|
2022-02-11 17:44:08 +00:00
|
|
|
[dependencies.reminder_web]
|
|
|
|
path = "web"
|
2023-03-24 17:44:43 +00:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
2023-06-12 14:41:34 +00:00
|
|
|
depends = "$auto, python3-dateparser (>= 1.0.0)"
|
2023-05-07 20:08:59 +00:00
|
|
|
suggests = "mysql-server-8.0, nginx"
|
2023-03-24 17:44:43 +00:00
|
|
|
maintainer-scripts = "debian"
|
|
|
|
assets = [
|
|
|
|
["target/release/reminder-rs", "usr/bin/reminder-rs", "755"],
|
2023-06-17 11:49:01 +00:00
|
|
|
["conf/default.env", "etc/reminder-rs/config.env", "600"],
|
2023-06-13 09:40:04 +00:00
|
|
|
["conf/Rocket.toml", "etc/reminder-rs/Rocket.toml", "600"],
|
2023-06-17 11:49:01 +00:00
|
|
|
["web/static/**/*", "lib/reminder-rs/static", "644"],
|
|
|
|
["web/templates/**/*", "lib/reminder-rs/templates", "644"],
|
2023-06-23 08:39:09 +00:00
|
|
|
["healthcheck", "lib/reminder-rs/healthcheck", "755"],
|
|
|
|
["cron.d/reminder_health", "etc/cron.d/reminder_health", "644"],
|
2023-05-07 20:08:59 +00:00
|
|
|
# ["nginx/reminder-rs", "etc/nginx/sites-available/reminder-rs", "755"]
|
2023-03-24 17:44:43 +00:00
|
|
|
]
|
2023-06-17 11:49:01 +00:00
|
|
|
conf-files = [
|
|
|
|
"/etc/reminder-rs/config.env",
|
|
|
|
"/etc/reminder-rs/Rocket.toml",
|
|
|
|
]
|
2023-03-24 17:44:43 +00:00
|
|
|
|
|
|
|
[package.metadata.deb.systemd-units]
|
|
|
|
unit-scripts = "systemd"
|
|
|
|
start = false
|