33 lines
764 B
TOML
33 lines
764 B
TOML
[package]
|
|
name = "reminder_rs"
|
|
version = "1.6.0-beta3"
|
|
authors = ["jellywx <judesouthworth@pm.me>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
poise = { git = "https://github.com/kangalioo/poise", branch = "develop" }
|
|
dotenv = "0.15"
|
|
tokio = { version = "1", features = ["process", "full"] }
|
|
reqwest = "0.11"
|
|
regex = "1.4"
|
|
log = "0.4"
|
|
env_logger = "0.8"
|
|
chrono = "0.4"
|
|
chrono-tz = { version = "0.5", features = ["serde"] }
|
|
lazy_static = "1.4"
|
|
num-integer = "0.1"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_repr = "0.1"
|
|
rmp-serde = "0.15"
|
|
rand = "0.7"
|
|
levenshtein = "1.0"
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "chrono"]}
|
|
base64 = "0.13.0"
|
|
|
|
[dependencies.postman]
|
|
path = "postman"
|
|
|
|
[dependencies.reminder_web]
|
|
path = "web"
|