Skip to content

Commit 5d87256

Browse files
dianpopaandreeaflorescu
authored andcommitted
Remove some redundant crate dependencies
Signed-off-by: Diana Popa <[email protected]>
1 parent 0844458 commit 5d87256

File tree

5 files changed

+5
-135
lines changed

5 files changed

+5
-135
lines changed

Cargo.lock

Lines changed: 0 additions & 130 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Amazon Firecracker team <[email protected]>"]
66
[dependencies]
77
backtrace = {version = "0.3", features = ["libunwind", "libbacktrace"], default-features = false}
88
chrono = ">=0.4"
9-
clap = "=2.27.1"
9+
clap = { version = ">=2.27.1", default-features = false}
1010

1111
api_server = { path = "api_server" }
1212
fc_util = { path = "fc_util" }

api_server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ authors = ["Amazon Firecracker team <[email protected]>"]
55

66
[dependencies]
77
chrono = ">=0.4"
8-
futures = "=0.1.18"
9-
hyper = "=0.11.16"
8+
futures = { version = "=0.1.18", default-features = false}
9+
hyper = { version = "=0.11.16", default-features = false }
1010
serde = ">=1.0.27"
1111
serde_derive = ">=1.0.27"
1212
serde_json = ">=1.0.9"

jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.16.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55

66
[dependencies]
7-
clap = ">=2.27.1"
7+
clap = { version = ">=2.27.1", default-features = false}
88
libc = ">=0.2.39"
99
regex = ">=1.0.0"
1010

mmds/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55

66
[dependencies]
7-
json-patch = ">=0.2.1"
7+
json-patch = { version = ">=0.2.1", default-features = false}
88
lazy_static = ">=1.1.0"
99
serde_json = ">=1.0.9"
1010

0 commit comments

Comments
 (0)