mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-14 06:59:07 -05:00
improvement: remove useless carats from Cargo.toml deps
This commit is contained in:
parent
a754477a02
commit
11c33582ef
50
Cargo.toml
50
Cargo.toml
|
@ -4,29 +4,29 @@ version = "0.6.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = "^0.4"
|
log = "0.4"
|
||||||
env_logger = "^0.9"
|
env_logger = "0.9"
|
||||||
tokio = { version = "^1.16", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
futures = "^0.3"
|
futures = "0.3"
|
||||||
futures-util = "^0.3"
|
futures-util = "0.3"
|
||||||
tokio-tungstenite = "^0.17"
|
tokio-tungstenite = "0.17"
|
||||||
tungstenite = "^0.17"
|
tungstenite = "0.17"
|
||||||
thiserror = "^1"
|
thiserror = "1"
|
||||||
uuid = { version = "^0.8", features = ["v4"] }
|
uuid = { version = "0.8", features = ["v4"] }
|
||||||
config = { version = "^0.12", features = ["toml"] }
|
config = { version = "0.12", features = ["toml"] }
|
||||||
bitcoin_hashes = { version = "^0.10", features = ["serde"] }
|
bitcoin_hashes = { version = "0.10", features = ["serde"] }
|
||||||
secp256k1 = {version = "^0.21", features = ["rand", "rand-std", "serde", "bitcoin_hashes"] }
|
secp256k1 = {version = "0.21", features = ["rand", "rand-std", "serde", "bitcoin_hashes"] }
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = {version = "^1.0", features = ["preserve_order"]}
|
serde_json = {version = "1.0", features = ["preserve_order"]}
|
||||||
hex = "^0.4"
|
hex = "0.4"
|
||||||
rusqlite = { version = "^0.26", features = ["limits","bundled"]}
|
rusqlite = { version = "0.26", features = ["limits","bundled"]}
|
||||||
r2d2 = "^0.8"
|
r2d2 = "0.8"
|
||||||
r2d2_sqlite = "^0.19"
|
r2d2_sqlite = "0.19"
|
||||||
lazy_static = "^1.4"
|
lazy_static = "1.4"
|
||||||
governor = "^0.4"
|
governor = "0.4"
|
||||||
nonzero_ext = "^0.3"
|
nonzero_ext = "0.3"
|
||||||
hyper = { version="0.14", features=["client", "server","http1","http2","tcp"] }
|
hyper = { version="0.14", features=["client", "server","http1","http2","tcp"] }
|
||||||
hyper-tls = "^0.5"
|
hyper-tls = "0.5"
|
||||||
http = { version = "^0.2" }
|
http = { version = "0.2" }
|
||||||
parse_duration = "^2"
|
parse_duration = "2"
|
||||||
rand = "^0.8"
|
rand = "0.8"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user