-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (48 loc) · 1.28 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "mc-auth"
version = "0.1.0"
edition = "2021"
default-run = "mc-auth"
[workspace]
members = [".", "prisma-cli"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "*", features = ["full"] }
tower = "*"
tracing = "*"
tracing-subscriber = { version = "*", features = [
"env-filter",
] }
axum = { version = "*", features = ["tracing"] }
serde = { version = "*", features = ["derive"] }
serde_json = "*"
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", rev = "a643effbd978deb0de8b2d637069aaa124d0332f", features = [
"migrations",
"postgresql",
] }
anyhow = "*"
tower-http = { version = "*", features = ["trace"] }
thiserror = "*"
uuid = { version = "*", features = ["v4", "fast-rng"] }
base64 = "*"
rsa = { version = "*" }
sha1 = { version = "*", features = ["oid"] }
sha2 = "*"
idgenerator = "*"
config = { version = "*", features = ["toml"] }
better-panic = "*"
color-backtrace = "*"
rand = "*"
chrono = "*"
toml = "*"
tokio-postgres = "0.7.10"
[profile.release]
opt-level = 3
debug = false
lto = true
panic = "abort"
codegen-units = 1
[profile.dev.package.num-bigint-dig]
opt-level = 3
[patch.'https://crates.io/crates/tokio-postgres']
tokio-postgres = "0.7.10"