Remove unnecessary dependency

This commit is contained in:
Guillume DIDIER 2022-09-27 10:46:04 +02:00
parent 9419b0c58f
commit dcc84e8916
2 changed files with 0 additions and 11 deletions

10
Cargo.lock generated
View File

@ -50,15 +50,6 @@ version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "atomic"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3410529e8288c463bedb5930f82833bc0c90e5d2fe639a56582a4d09220b281"
dependencies = [
"autocfg",
]
[[package]] [[package]]
name = "autocfg" name = "autocfg"
version = "1.0.1" version = "1.0.1"
@ -125,7 +116,6 @@ dependencies = [
name = "cache_utils" name = "cache_utils"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"atomic",
"bitvec", "bitvec",
"cpuid", "cpuid",
"hashbrown", "hashbrown",

View File

@ -13,7 +13,6 @@ cpuid = { path = "../cpuid", default-features = false }
x86_64 = "0.14.1" x86_64 = "0.14.1"
static_assertions = "1.1.0" static_assertions = "1.1.0"
itertools = { version = "0.10.0", default-features = false } itertools = { version = "0.10.0", default-features = false }
atomic = "0.5.0"
nix = { version = "0.20.0", optional = true } nix = { version = "0.20.0", optional = true }
libc = { version = "0.2.92", optional = true } libc = { version = "0.2.92", optional = true }