Bump the mycelium group across 1 directory with 4 updates

Bumps the mycelium group with 4 updates in the / directory: [tokio](https://github.com/tokio-rs/tokio), [serde](https://github.com/serde-rs/serde), [libc](https://github.com/rust-lang/libc) and [byte-unit](https://github.com/magiclen/byte-unit).


Updates `tokio` from 1.41.0 to 1.41.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.41.1)

Updates `serde` from 1.0.214 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.214...v1.0.215)

Updates `libc` from 0.2.161 to 0.2.162
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.162/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.161...0.2.162)

Updates `byte-unit` from 5.1.4 to 5.1.6
- [Commits](https://github.com/magiclen/byte-unit/compare/v5.1.4...v5.1.6)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: byte-unit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2024-11-11 23:58:58 +00:00
committed by Lee Smet
parent 8a2b564c8e
commit 0d0f9934f1
6 changed files with 20 additions and 20 deletions

20
Cargo.lock generated
View File

@@ -288,9 +288,9 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
[[package]]
name = "byte-unit"
version = "5.1.4"
version = "5.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ac19bdf0b2665407c39d82dbc937e951e7e2001609f0fb32edd0af45a2d63e"
checksum = "e1cd29c3c585209b0cbc7309bfe3ed7efd8c84c21b7af29c8bfae908f8777174"
dependencies = [
"rust_decimal",
"serde",
@@ -1033,9 +1033,9 @@ dependencies = [
[[package]]
name = "libc"
version = "0.2.161"
version = "0.2.162"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398"
[[package]]
name = "libloading"
@@ -2122,18 +2122,18 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
[[package]]
name = "serde"
version = "1.0.214"
version = "1.0.215"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.214"
version = "1.0.215"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
dependencies = [
"proc-macro2",
"quote",
@@ -2412,9 +2412,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.41.0"
version = "1.41.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
dependencies = [
"backtrace",
"bytes",

View File

@@ -10,7 +10,7 @@ mactunfd = ["mycelium/mactunfd"]
[dependencies]
mycelium = { path = "../mycelium", features = ["vendored-openssl"] }
tokio = { version = "1.41.0", features = ["signal", "rt-multi-thread"] }
tokio = { version = "1.41.1", features = ["signal", "rt-multi-thread"] }
thiserror = "1.0.65"
tracing = { version = "0.1.40", features = ["release_max_level_debug"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }

View File

@@ -18,13 +18,13 @@ axum = { version = "0.7.7", default-features = false, features = [
] }
base64 = "0.22.1"
tracing = "0.1.40"
tokio = { version = "1.41.0", default-features = false, features = [
tokio = { version = "1.41.1", default-features = false, features = [
"net",
"rt",
] }
mycelium = { path = "../mycelium" }
mycelium-metrics = { path = "../mycelium-metrics", features = ["prometheus"] }
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
[dev-dependencies]
serde_json = "1.0.132"

View File

@@ -11,16 +11,16 @@ message = ["mycelium/message", "mycelium-api/message"]
[dependencies]
mycelium = { path = "../mycelium" }
mycelium-api = { path = "../mycelium-api" }
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
base64 = "0.22.1"
prettytable-rs = "0.10.0"
tracing = "0.1.40"
tokio = { version = "1.41.0", default-features = false, features = [
tokio = { version = "1.41.1", default-features = false, features = [
"net",
"rt",
"fs",
] }
reqwest = { version = "0.12.9", default-features = false, features = ["json"] }
byte-unit = "5.1.4"
byte-unit = "5.1.6"
urlencoding = "2.1.3"

View File

@@ -18,7 +18,7 @@ mycelium = { path = "../mycelium", default-features = false }
prometheus = { version = "0.13.4", default-features = false, optional = true, features = [
"process",
] }
tokio = { version = "1.41.0", default-features = false, optional = true, features = [
tokio = { version = "1.41.1", default-features = false, optional = true, features = [
"net",
"rt",
] }

View File

@@ -14,7 +14,7 @@ mactunfd = [
] #mactunfd is a flag to specify that macos should provide tun FD instead of tun name
[dependencies]
tokio = { version = "1.41.0", features = [
tokio = { version = "1.41.1", features = [
"io-util",
"fs",
"macros",
@@ -24,7 +24,7 @@ tokio = { version = "1.41.0", features = [
] }
tokio-util = { version = "0.7.12", features = ["codec"] }
futures = "0.3.31"
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
rand = "0.8.5"
bytes = "1.8.0"
x25519-dalek = { version = "2.0.1", features = ["getrandom", "static_secrets"] }
@@ -57,7 +57,7 @@ nix = { version = "0.29.0", features = ["socket"] }
[target.'cfg(target_os = "macos")'.dependencies]
tun = { git = "https://github.com/LeeSmet/rust-tun", features = ["async"] }
libc = "0.2.161"
libc = "0.2.162"
nix = { version = "0.29.0", features = ["net", "socket", "ioctl"] }
[target.'cfg(target_os = "windows")'.dependencies]