-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (60 loc) · 1.32 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
55
56
57
58
59
60
61
62
63
64
[package]
name = "furtherance-sync"
version = "1.0.0"
edition = "2021"
license = "Elastic-2.0"
[features]
default = ["self-hosted"]
self-hosted = []
official = ["dep:async-stripe", "dep:lettre"]
[profile.release]
lto = true
[dependencies]
aes-gcm = "0.10"
argon2 = "0.5"
async-stripe = { version = "0.39.1", features = [
"runtime-tokio-hyper",
], optional = true }
axum = "0.7"
axum-extra = { version = "0.9", features = ["cookie"] }
base64 = "0.22"
bcrypt = "0.15"
blake3 = "1.5"
handlebars = "6.2"
jsonwebtoken = "9.3"
lettre = { version = "0.11", features = [
"tokio1",
"tokio1-native-tls",
], optional = true }
rand = "0.8"
regex = "1.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = [
"runtime-tokio-native-tls",
"postgres",
"uuid",
"time",
] }
time = { version = "0.3", features = [
"serde",
"formatting",
"macros",
"parsing",
] }
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"net",
"time",
"sync",
] }
tower = "0.5"
tower_governor = "0.4"
tower-http = { version = "0.6", features = ["fs", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
urlencoding = "2.1"
uuid = { version = "1.11", features = ["v4", "serde"] }
[dev-dependencies]
reqwest = "0.12"