Remove "log" feature from netservices

This commit is contained in:
Alexis Sellier 2023-01-25 20:12:13 +01:00
parent 30e9d6103c
commit 798485dfb1
No known key found for this signature in database
2 changed files with 1 additions and 14 deletions

13
Cargo.lock generated
View File

@ -1415,7 +1415,6 @@ dependencies = [
"amplify",
"crossbeam-channel",
"libc",
"log",
"popol",
]
@ -1583,7 +1582,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
"value-bag",
]
[[package]]
@ -1661,7 +1659,6 @@ dependencies = [
"ed25519-compact",
"io-reactor",
"libc",
"log",
"rand 0.8.5",
"socket2",
]
@ -3396,16 +3393,6 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "value-bag"
version = "1.0.0-alpha.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
dependencies = [
"ctor",
"version_check",
]
[[package]]
name = "vcpkg"
version = "0.2.15"

View File

@ -22,7 +22,7 @@ git-ref-format = { version = "0", features = ["serde", "macro"] }
lexopt = { version = "0.2.1" }
log = { version = "0.4.17", features = ["std"] }
localtime = { version = "1" }
netservices = { version = "0", features = ["io-reactor", "socket2", "log"] }
netservices = { version = "0", features = ["io-reactor", "socket2"] }
nonempty = { version = "0.8.1", features = ["serialize"] }
io-reactor = { version = "0.1.0", features = ["popol"] }
qcheck = { version = "1", default-features = false, optional = true }