-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1 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
32
33
[package]
name = "los-angeles-directory-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.6.4"
actix-rt = "2.8.0"
actix-web = "4.3.1"
arguments = "0.7.2"
bb8 = "0.8.1"
bb8-postgres = {version = "0.8.1", features = ["with-time-0_3", "with-chrono-0_4", "with-geo-types-0_6"]}
chrono = {version = "0.4.26",features = ["serde"]}
diesel = {version = "2.1.0", features = ["postgres", "r2d2", "uuid", "chrono"]}
diesel_migrations = { version = "2.1.0"}
dotenv = "0.15.0"
firebase-auth = "0.2.1"
lazy_static = "1.4.0"
listenfd = "1.0.1"
r2d2 = "0.8.10"
r2d2_postgres = {version = "0.18.1"}
serde = "1.0.186"
serde_json = "1.0.105"
sqlx = { version = "0.7.2", features = ["postgres", "runtime-tokio-rustls"] }
tokio = "1.32.0"
tokio-postgres = {version = "0.7.9", features = ["with-uuid-0_8", "with-time-0_3"]}
uuid = {version = "1.4.1", features = ['v4']}
[[bin]]
name = "maketables"
path = "src/make_tables.rs"