mirror of
https://github.com/icewind1991/notify-redis.git
synced 2026-06-03 18:24:12 +02:00
reduce binary size
This commit is contained in:
parent
0e4a7eb35d
commit
e5a506f3fe
2 changed files with 5 additions and 9 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
|
@ -532,7 +532,6 @@ dependencies = [
|
|||
"dtoa",
|
||||
"itoa",
|
||||
"percent-encoding",
|
||||
"sha1",
|
||||
"url",
|
||||
]
|
||||
|
||||
|
|
@ -606,12 +605,6 @@ dependencies = [
|
|||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sha1"
|
||||
version = "0.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
|
||||
|
||||
[[package]]
|
||||
name = "sharded-slab"
|
||||
version = "0.1.1"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ edition = "2018"
|
|||
|
||||
[dependencies]
|
||||
notify = "4.0"
|
||||
redis = "0.20"
|
||||
redis = { version = "0.20", default-features = false }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
|
@ -14,4 +14,7 @@ color-eyre = "0.5"
|
|||
|
||||
[dev-dependencies]
|
||||
rand = "0.8.3"
|
||||
tempfile = "3"
|
||||
tempfile = "3"
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue