diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2021-03-21 14:45:50 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2021-03-21 14:45:50 +0100 |
| commit | 433cd3d452ab68236b9347e74b1d8b305b0b4c52 (patch) | |
| tree | 7be7ef93522849df946d7650f4c72b7e64234a42 | |
| parent | 226af6b66c50d4723222629da2634694400e868a (diff) | |
| download | mum-433cd3d452ab68236b9347e74b1d8b305b0b4c52.tar.gz | |
update fern and ipc channel
| -rw-r--r-- | Cargo.lock | 43 | ||||
| -rw-r--r-- | mumctl/Cargo.toml | 2 | ||||
| -rw-r--r-- | mumd/Cargo.toml | 2 | ||||
| -rw-r--r-- | mumlib/Cargo.toml | 2 |
4 files changed, 8 insertions, 41 deletions
@@ -138,19 +138,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] -name = "chrono" -version = "0.4.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" -dependencies = [ - "libc", - "num-integer", - "num-traits", - "time", - "winapi 0.3.9", -] - -[[package]] name = "clang-sys" version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -424,11 +411,10 @@ dependencies = [ [[package]] name = "fern" -version = "0.5.9" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e69ab0d5aca163e388c3a49d284fed6c3d0810700e77c5ae2756a50ec1a4daaa" +checksum = "8c9a4820f0ccc8a7afd67c39a0f1a0f4b07ca1725164271a64939d7aeb9af065" dependencies = [ - "chrono", "log", ] @@ -679,9 +665,9 @@ dependencies = [ [[package]] name = "ipc-channel" -version = "0.14.1" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3698b8affd5656032a074a7d40b3c2a29b71971f3e1ff6042b9d40724e20d97c" +checksum = "ad9b32d360ae2d4662212f1d29bc8a277256f49029cea20fd6c182b89819aea7" dependencies = [ "bincode", "crossbeam-channel", @@ -693,6 +679,7 @@ dependencies = [ "serde", "tempfile", "uuid", + "winapi 0.3.9", ] [[package]] @@ -1076,16 +1063,6 @@ dependencies = [ ] [[package]] -name = "num-integer" -version = "0.1.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" -dependencies = [ - "autocfg", - "num-traits", -] - -[[package]] name = "num-traits" version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1635,16 +1612,6 @@ dependencies = [ ] [[package]] -name = "time" -version = "0.1.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" -dependencies = [ - "libc", - "winapi 0.3.9", -] - -[[package]] name = "tokio" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/mumctl/Cargo.toml b/mumctl/Cargo.toml index 42188d2..b22ca02 100644 --- a/mumctl/Cargo.toml +++ b/mumctl/Cargo.toml @@ -16,6 +16,6 @@ mumlib = { version = "0.3", path = "../mumlib" } clap = { version = "2.33", features = ["yaml"] } colored = "2.0" log = "0.4" -ipc-channel = "0.14" +ipc-channel = "0.15" #cursive = "0.15" diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index 57fefed..9080bdf 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -28,7 +28,7 @@ dasp_ring_buffer = "0.11" futures-util = { version = "0.3", features = ["sink"]} futures-channel = "0.3" hound = "3.4" -ipc-channel = "0.14" +ipc-channel = "0.15" log = "0.4" mumble-protocol = "0.4.1" native-tls = "0.2" diff --git a/mumlib/Cargo.toml b/mumlib/Cargo.toml index e439e77..240e017 100644 --- a/mumlib/Cargo.toml +++ b/mumlib/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" [dependencies] colored = "2.0" -fern = "0.5" +fern = "0.6" log = "0.4" serde = { version = "1.0", features = ["derive"] } toml = "0.5" |
