diff options
| author | Linus Färnstrand <faern@faern.net> | 2021-08-12 11:41:45 +0200 |
|---|---|---|
| committer | Linus Färnstrand <faern@faern.net> | 2021-08-12 11:41:45 +0200 |
| commit | 4427435f5258aa590e471dd66401911da05751ba (patch) | |
| tree | c4871575110f6d1c00048cbcc813dde90815e033 | |
| parent | 5eaf0c7aa973f99580703ffb533d421d8ad70857 (diff) | |
| download | mullvadvpn-4427435f5258aa590e471dd66401911da05751ba.tar.xz mullvadvpn-4427435f5258aa590e471dd66401911da05751ba.zip | |
Remove unused bytes dependency
| -rw-r--r-- | Cargo.lock | 29 | ||||
| -rw-r--r-- | mullvad-rpc/Cargo.toml | 1 |
2 files changed, 11 insertions, 19 deletions
diff --git a/Cargo.lock b/Cargo.lock index 4205f6a56a..8148edf8dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -163,12 +163,6 @@ dependencies = [ [[package]] name = "bytes" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" - -[[package]] -name = "bytes" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" @@ -770,7 +764,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726" dependencies = [ - "bytes 1.0.1", + "bytes", "fnv", "futures-core", "futures-sink", @@ -829,7 +823,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7245cd7449cc792608c3c8a9eaf69bd4eabbabf802713748fd739c98b82f0747" dependencies = [ - "bytes 1.0.1", + "bytes", "fnv", "itoa", ] @@ -840,7 +834,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9" dependencies = [ - "bytes 1.0.1", + "bytes", "http", "pin-project-lite", ] @@ -869,7 +863,7 @@ version = "0.14.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7728a72c4c7d72665fde02204bcbd93b247721025b222ef78606f14513e0fd03" dependencies = [ - "bytes 1.0.1", + "bytes", "futures-channel", "futures-core", "futures-util", @@ -1390,7 +1384,6 @@ dependencies = [ name = "mullvad-rpc" version = "0.1.0" dependencies = [ - "bytes 0.5.6", "chrono", "err-derive", "filetime", @@ -1518,7 +1511,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddd06e90449ae973fe3888c1ff85949604ef5189b4ac9a2ae39518da1e00762d" dependencies = [ - "bytes 1.0.1", + "bytes", "futures", "log", "netlink-packet-core", @@ -1927,7 +1920,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "de5e2533f59d08fcf364fd374ebda0692a70bd6d7e66ef97f306f45c6c5d8020" dependencies = [ - "bytes 1.0.1", + "bytes", "prost-derive", ] @@ -1937,7 +1930,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "355f634b43cdd80724ee7848f95770e7e70eefa6dcf14fea676216573b8fd603" dependencies = [ - "bytes 1.0.1", + "bytes", "heck", "itertools", "log", @@ -1968,7 +1961,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "603bbd6394701d13f3f25aada59c7de9d35a6a5887cfc156181234a44002771b" dependencies = [ - "bytes 1.0.1", + "bytes", "prost", ] @@ -2704,7 +2697,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98c8b05dc14c75ea83d63dd391100353789f5f24b8b3866542a5e85c8be8e985" dependencies = [ "autocfg", - "bytes 1.0.1", + "bytes", "libc", "memchr", "mio 0.7.13", @@ -2765,7 +2758,7 @@ version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592" dependencies = [ - "bytes 1.0.1", + "bytes", "futures-core", "futures-sink", "log", @@ -2791,7 +2784,7 @@ dependencies = [ "async-stream", "async-trait", "base64", - "bytes 1.0.1", + "bytes", "futures-core", "futures-util", "h2", diff --git a/mullvad-rpc/Cargo.toml b/mullvad-rpc/Cargo.toml index b9d48f2dc8..5d36827fff 100644 --- a/mullvad-rpc/Cargo.toml +++ b/mullvad-rpc/Cargo.toml @@ -8,7 +8,6 @@ edition = "2018" publish = false [dependencies] -bytes = "0.5" chrono = { version = "0.4", features = ["serde"] } err-derive = "0.3.0" futures = "0.3" |
