aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2023-08-13 19:06:39 +0200
committerHimbeerserverDE <himbeerserverde@gmail.com>2023-08-13 19:06:39 +0200
commit2a833fcb9ff337e2bf78290200077d564a76904e (patch)
tree86b010c2731b13a33c4b6be0219de579826ca235
parentc03d5b431e09a6da7dd02175d1523733afbbeedc (diff)
update netlinkd and ip_config
-rw-r--r--Cargo.lock24
-rw-r--r--Cargo.toml4
2 files changed, 22 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 49e7ccd..a6f3d28 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -370,6 +370,12 @@ dependencies = [
]
[[package]]
+name = "ipnet"
+version = "2.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
+
+[[package]]
name = "itoa"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -747,21 +753,23 @@ checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
[[package]]
name = "rsdsl_ip_config"
-version = "0.2.1"
-source = "git+https://github.com/rsdsl/ip_config.git#26c15096a1f4b69c6c06b5373b507c9dbbfc54c5"
+version = "0.2.2"
+source = "git+https://github.com/rsdsl/ip_config.git#3239a5eeef22de4c50d4d00a9f51bebb5207633c"
dependencies = [
"serde",
]
[[package]]
name = "rsdsl_netlinkd"
-version = "0.5.0"
-source = "git+https://github.com/rsdsl/netlinkd.git#644023c680db2346c3144e7218d9ece7402e65b5"
+version = "0.6.0"
+source = "git+https://github.com/rsdsl/netlinkd.git#72f04e3494b4f3ba810274447235e9051f5e1749"
dependencies = [
"futures-util",
+ "ipnet",
"netlink-packet-route",
"notify",
"rsdsl_ip_config",
+ "rsdsl_pd_config",
"rtnetlink",
"serde_json",
"thiserror",
@@ -769,6 +777,14 @@ dependencies = [
]
[[package]]
+name = "rsdsl_pd_config"
+version = "0.1.0"
+source = "git+https://github.com/rsdsl/pd_config.git#98ee1876a08a1c3844d0b439a8ba52e5b3423810"
+dependencies = [
+ "serde",
+]
+
+[[package]]
name = "rsdsl_pppoe2"
version = "0.1.0"
dependencies = [
diff --git a/Cargo.toml b/Cargo.toml
index 2cb29e7..a2f6ffe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,8 +10,8 @@ libc = "0.2.147"
md5 = "0.7.0"
ppproperly = { git = "https://github.com/rsdsl/ppproperly.git", version = "0.1.0" }
rand = "0.8.5"
-rsdsl_ip_config = { git = "https://github.com/rsdsl/ip_config.git", version = "0.2.1" }
-rsdsl_netlinkd = { git = "https://github.com/rsdsl/netlinkd.git", version = "0.5.0" }
+rsdsl_ip_config = { git = "https://github.com/rsdsl/ip_config.git", version = "0.2.2" }
+rsdsl_netlinkd = { git = "https://github.com/rsdsl/netlinkd.git", version = "0.6.0" }
rsdsl_pppoe2_sys = { git = "https://github.com/rsdsl/pppoe2.git", version = "0.1.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"