-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.57 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
[package]
name = "signal-rest"
version = "0.1.0"
edition = "2021"
authors = ["mfw78 <[email protected]>"]
[patch.crates-io]
"curve25519-dalek" = { git = 'https://github.com/signalapp/curve25519-dalek', branch = 'lizard2' }
[dependencies]
anyhow = "1.0"
base64 = "0.21.2"
chrono = { version = "0.4", default-features = false, features = ["serde", "clock"] }
clap = { version = "4.3.0", features = ["derive", "env"] }
directories = "5.0.1"
futures = "0.3"
hex = "0.4"
mime_guess = "2.0"
tempfile = "3.3"
axum = { version = "0.6.20", features = ["macros"] }
hyper = { version = "0.14.27", features = ["full"] }
tokio = { version = "1.30.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.4.3", features = ["trace"] }
qr2term = { version = "0.3.1" }
notify-rust = "4.6.0"
url = "2.2"
## misc
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "ansi", "fmt", "std", "json", "time"] }
atty = "0.2.14"
time = { version = "0.3.21", features = ["macros"] }
# presage (signal library)
presage = { git = "https://github.com/MarcusGrass/presage", branch = "registration-fixes-completion" }
presage-store-sled = { git = "https://github.com/MarcusGrass/presage", branch = "registration-fixes-completion" }
# rest api
utoipa = { version = "3.4.4", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "3.1.5", features = ["axum"] }
utoipa-redoc = { version = "0.1.0", features = ["axum"] }
utoipa-rapidoc = { version = "0.1.0", features = ["axum"] }
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
[features]
quirks = []