-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 961 Bytes
/
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
34
35
36
37
38
39
40
41
[package]
name = "cdn"
version = "0.1.0"
edition = "2021"
default-run = "cdn"
license = "MIT"
[workspace]
resolver = "2"
members = ["prisma-cli"]
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.6.4"
actix-multipart = "0.6.0"
actix-web = "4.3.1"
dotenv = "0.15.0"
env_logger = "0.10.0"
jsonwebtoken = "8.3.0"
log = "0.4.18"
rs-snowflake = "0.6.0"
serde = { version = "1.0.163", features = ["derive"] }
tokio = { version = "1.28.2", features = ["full", "tracing"] }
infer = "0.13.0"
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.8", default-features = false, features = [
"postgresql",
"migrations",
] }
redis = { version = "0.23.0", default-features = false, features = [
"tokio-comp",
] }
redis-macros = "0.1.1"
serde_json = "1.0.96"
futures = "0.3.28"