2023-07-27 23:51:12 +02:00
|
|
|
[package]
|
|
|
|
name = "prns"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pronouns = { path = "../pronouns" }
|
|
|
|
time = { version = "0.3.23", features = ["formatting", "serde"] }
|
|
|
|
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "json"]}
|
|
|
|
rocket = "0.5.0-rc.3"
|
|
|
|
tokio = { version = "1.27.0", features = ["full"] }
|
|
|
|
dotenvy = "0.15.7"
|
2023-07-28 02:21:33 +02:00
|
|
|
simple_logger = "4.2.0"
|
|
|
|
log = "0.4.19"
|