-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
53 lines (49 loc) · 1.7 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
[package]
name = "mollysocket"
version = "1.5.6"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["S1m"]
description = "MollySocket allows getting signal notifications via UnifiedPush."
readme = "README.md"
repository = "https://github.com/mollyim/mollysocket"
keywords = ["unifiedpush", "molly", "signal"]
# build = "src/build_proto.rs"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "s" # Optimize for size
lto = true # Link time optimization
codegen-units = 1 # Limit code generation units
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.83"
env_logger = "0.11.5"
futures-channel = "0.3"
futures-util = "0.3"
http = "1.2.0"
# until https://github.com/rust-lang/rust/issues/27709 is merged
ip_rfc = "0.1.0"
lazy_static = "1.5.0"
log = "0.4.22"
native-tls = "0.2.12"
prost = "0.13"
reqwest = { version = "0.12.9", features = ["json"]}
serde = { version = "1.0.216", features = ["derive"]}
tokio-tungstenite = { version = "0.25.0", features = ["native-tls", "url"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
url = "2.5.4"
rusqlite = "0.32.1"
rocket = { version = "0.5.1", features = ["json"]}
rocket_prometheus = "0.10.1"
trust-dns-resolver = { version = "0.23.2", features = ["tokio-runtime"]}
eyre = "0.6.12"
clap = {version = "4.5.23", features = ["derive"]}
figment = { version = "0.10.19", features = ["toml", "env"] }
directories = "5.0.1"
regex = "1.11.1"
qrcodegen = "1.8.0"
base64 = "0.22.1"
openssl = "0.10.68"
jwt-simple = { version = "0.12.11", default-features = false, features = ["pure-rust"] }
# [build-dependencies]
# prost-build = { version = "0.12" }