-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "audition-dates"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev.package.sqlx-macros]
opt-level = 3
[dependencies]
rocket = { version = "0.5.0-rc.3", features = ["secrets", "json"] }
rocket_db_pools = { version = "0.1.0-rc.3", features = ["sqlx_postgres"] }
sqlx = { version = "0.6", features = ["postgres", "chrono", "offline", "migrate", "runtime-tokio-rustls"] } # should be matched with rocket_db_pools
rocket_dyn_templates = { version = "0.1.0-rc.3", features = ["tera"] }
fluent-templates = { version = "0.8", features = ["tera"] }
accept-language = "2.0"
lettre = { version = "0.10", features = ["builder", "tokio1-native-tls"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
tera = "1"
lazy_static = "1"
argon2 = "0.4"
rand_core = { version = "0.6", features = ["std"] }
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1"
lazy-regex = "2"
derive_deref = "1"
itertools = "0.10"
map-macro = "0.2"
futures = "0.3"