forked from nextcloud/notify_push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.69 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
[package]
name = "notify_push"
version = "0.1.0" # this version number is unused, the version number for the binary will be extracted from the appinfo/info.xml during build
authors = ["Robin Appelman <[email protected]>"]
edition = "2021"
rust-version = "1.66.0"
[dependencies]
redis = { version = "0.23.3", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async"] }
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.50"
warp = { version = "0.3.6", features = ["tls"] }
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread", "signal"] }
futures = "0.3.29"
log = "0.4.20"
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
dotenv = "0.15.0"
dashmap = "5.5.3"
once_cell = "1.18.0"
miette = { version = "5.10.0", features = ["fancy"] }
smallvec = { version = "1.11.1", features = ["serde"] }
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls", "json"] }
warp-real-ip = "0.2.0"
parse-display = "0.8.2"
percent-encoding = "2.3.0"
rand = { version = "0.8.5", features = ["small_rng"] }
ahash = "0.8.6"
flexi_logger = { version = "0.27.2", features = ["colors", "is-terminal"] }
tokio-stream = { version = "0.1.14", features = ["net"] }
structopt = "0.3.26"
derivative = "2.2.0"
nextcloud-config-parser = { version = "0.8.0", features = ["db-sqlx", "redis-connect"] }
url = "2.4.1"
[dev-dependencies]
mini-redis = "0.4.1"
tokio-tungstenite = "0.20.1"
http-auth-basic = "0.3.3"
test_client = { path = "test_client" }
[build-dependencies]
nextcloud_appinfo = "0.6.0"
[profile.dev.package.backtrace]
opt-level = 3
[profile.release]
lto = true
[workspace]