Skip to content

Commit 29b4f25

Browse files
committed
remove unused dependencies
1 parent 4f857e4 commit 29b4f25

File tree

14 files changed

+3
-23
lines changed

14 files changed

+3
-23
lines changed

sys/driver/ixgbe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ default-features = false
6060

6161
[features]
6262
default = [
63-
# "nullnet",
63+
"nullnet",
6464
]
6565

6666
nullnet = []

sys/init/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ default-features = false
3939

4040
[features]
4141
default = [
42-
"test_ab",
43-
"test_cd",
42+
# "test_ab",
43+
# "test_cd",
4444
"shadow",
4545
# "benchnet",
4646
# "benchnvme"

sys/lib/libdma/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ edition = "2018"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88
[dependencies]
9-
slabmalloc = { path = "../slabmalloc" }
109
libsyscalls = { path = "../libsyscalls", version = "0.1.0" }
1110

1211
#[dev-dependencies]

sys/lib/libsyscalls/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88
[dependencies]
99
spin = { path = "../../../lib/spin-rs" }
10-
x86_64 = "0.7.5"
1110
syscalls = { path = "../../interfaces/syscalls", version = "0.1.0"}
1211
platform = { path = "../../interfaces/platform", version = "0.1.0"}
1312
pc-keyboard = "0.3.1"

sys/lib/libtime/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88
[dependencies]
99
#spin = "0.5.2"
10-
x86_64 = "0.7.5"
1110
libsyscalls = { path = "../libsyscalls", version = "0.1.0"}
1211
console = { path = "../console", version = "0.1.0"}
1312

sys/lib/tls/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
slabmalloc = { path = "../slabmalloc" }
1110
libsyscalls = { path = "../libsyscalls", version = "0.1.0" }
1211
spin = { path = "../../../lib/spin-rs" }
1312
hashbrown = "0.6"

usr/proxy/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ panic = "abort"
1717
debug = true
1818

1919
[dependencies]
20-
x86_64 = "0.7.5"
2120
syscalls = { path = "../../sys/interfaces/syscalls", version = "0.1.0" }
2221
usr = { path = "../../sys/interfaces/usr", version = "0.1.0" }
2322
create = { path = "../../sys/interfaces/create", version = "0.1.0" }
2423
proxy = { path = "../../sys/interfaces/proxy", version = "0.1.0" }
2524
libsyscalls = { path = "../../sys/lib/libsyscalls", version = "0.1.0" }
2625
libtime = { path = "../../sys/lib/libtime", version = "0.1.0" }
2726
console = { path = "../../sys/lib/console", version = "0.1.0" }
28-
slabmalloc = { path = "../../sys/lib/slabmalloc" }
2927
malloc = { path = "../../sys/lib/malloc", version = "0.1.0" }
3028
rref = { path = "../../sys/lib/rref", version = "0.1.0" }
3129
spin = { path = "../../lib/spin-rs" }

usr/shadow/net/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ panic = "abort"
1717
debug = true
1818

1919
[dependencies]
20-
x86_64 = "0.7.5"
2120
syscalls = { path = "../../../sys/interfaces/syscalls", version = "0.1.0" }
2221
usr = { path = "../../../sys/interfaces/usr", version = "0.1.0" }
2322
create = { path = "../../../sys/interfaces/create", version = "0.1.0" }
2423
proxy = { path = "../../../sys/interfaces/proxy", version = "0.1.0" }
2524
libsyscalls = { path = "../../../sys/lib/libsyscalls", version = "0.1.0" }
2625
libtime = { path = "../../../sys/lib/libtime", version = "0.1.0" }
2726
console = { path = "../../../sys/lib/console", version = "0.1.0" }
28-
slabmalloc = { path = "../../../sys/lib/slabmalloc" }
2927
malloc = { path = "../../../sys/lib/malloc", version = "0.1.0" }
3028
rref = { path = "../../../sys/lib/rref", version = "0.1.0" }
3129
spin = { path = "../../../lib/spin-rs" }

usr/shadow/nvme/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ panic = "abort"
1717
debug = true
1818

1919
[dependencies]
20-
x86_64 = "0.7.5"
2120
syscalls = { path = "../../../sys/interfaces/syscalls", version = "0.1.0" }
2221
usr = { path = "../../../sys/interfaces/usr", version = "0.1.0" }
2322
create = { path = "../../../sys/interfaces/create", version = "0.1.0" }
2423
proxy = { path = "../../../sys/interfaces/proxy", version = "0.1.0" }
2524
libsyscalls = { path = "../../../sys/lib/libsyscalls", version = "0.1.0" }
2625
libtime = { path = "../../../sys/lib/libtime", version = "0.1.0" }
2726
console = { path = "../../../sys/lib/console", version = "0.1.0" }
28-
slabmalloc = { path = "../../../sys/lib/slabmalloc" }
2927
malloc = { path = "../../../sys/lib/malloc", version = "0.1.0" }
3028
rref = { path = "../../../sys/lib/rref", version = "0.1.0" }
3129
spin = { path = "../../../lib/spin-rs" }

usr/test/dom_a/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ panic = "abort"
1717
debug = true
1818

1919
[dependencies]
20-
x86_64 = "0.7.5"
2120
syscalls = { path = "../../../sys/interfaces/syscalls", version = "0.1.0" }
2221
usr = { path = "../../../sys/interfaces/usr", version = "0.1.0" }
2322
create = { path = "../../../sys/interfaces/create", version = "0.1.0" }
2423
proxy = { path = "../../../sys/interfaces/proxy", version = "0.1.0" }
2524
libsyscalls = { path = "../../../sys/lib/libsyscalls", version = "0.1.0" }
2625
libtime = { path = "../../../sys/lib/libtime", version = "0.1.0" }
2726
console = { path = "../../../sys/lib/console", version = "0.1.0" }
28-
slabmalloc = { path = "../../../sys/lib/slabmalloc" }
2927
malloc = { path = "../../../sys/lib/malloc", version = "0.1.0" }
3028
rref = { path = "../../../sys/lib/rref", version = "0.1.0" }
3129
tls = { path = "../../../sys/lib/tls", version = "0.1.0" }

0 commit comments

Comments
 (0)