~nickbp/kapiti

bc79ec8d5fd81a344a178d63eea386f0204c6e6b — Nick Parker 1 year, 4 months ago e0230cf
Temp fix for https://github.com/tokio-rs/tracing/issues/2565
2 files changed, 13 insertions(+), 0 deletions(-)

M Cargo.lock
M Cargo.toml
M Cargo.lock => Cargo.lock +12 -0
@@ 29,6 29,15 @@ dependencies = [
]

[[package]]
name = "aho-corasick"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
dependencies = [
 "memchr",
]

[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"


@@ 1205,6 1214,7 @@ dependencies = [
 "proptest",
 "rand",
 "redis",
 "regex",
 "retainer",
 "rkyv",
 "scopeguard",


@@ 1839,6 1849,8 @@ version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac6cf59af1067a3fb53fbe5c88c053764e930f932be1d71d3ffe032cbe147f59"
dependencies = [
 "aho-corasick",
 "memchr",
 "regex-syntax 0.7.0",
]


M Cargo.toml => Cargo.toml +1 -0
@@ 39,6 39,7 @@ pin-project-lite = "0.2"
rand = "0.8"
# disable unused redis async client:
redis = { version = "0.23", default-features = false, features = ["script"] }
regex = { version = "1", features = ["unicode-case"] } # TODO temp fix for https://github.com/tokio-rs/tracing/issues/2565
retainer = "0.3"
rkyv = { version = "0.7", features = ["validation"] }
scopeguard = "1.1"