3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-08-11 15:50:56 +00:00

Add jemalloc to test -sys style dependencies

This commit is contained in:
Arpad Borsos 2023-07-31 16:34:21 +02:00
parent fd201ad913
commit 9de8f90afb
No known key found for this signature in database
GPG key ID: FC7BCA77824B3298
4 changed files with 33 additions and 1 deletions

21
tests/Cargo.lock generated
View file

@ -523,6 +523,7 @@ name = "rust-cache"
version = "0.1.0"
dependencies = [
"reqwest",
"tikv-jemallocator",
"watto",
]
@ -658,6 +659,26 @@ dependencies = [
"syn",
]
[[package]]
name = "tikv-jemalloc-sys"
version = "0.5.4+5.3.0-patched"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "tikv-jemallocator"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca"
dependencies = [
"libc",
"tikv-jemalloc-sys",
]
[[package]]
name = "tinyvec"
version = "1.6.0"