diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-08-13 19:06:39 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-08-13 19:06:39 +0200 |
commit | 2a833fcb9ff337e2bf78290200077d564a76904e (patch) | |
tree | 86b010c2731b13a33c4b6be0219de579826ca235 | |
parent | c03d5b431e09a6da7dd02175d1523733afbbeedc (diff) |
update netlinkd and ip_config
-rw-r--r-- | Cargo.lock | 24 | ||||
-rw-r--r-- | Cargo.toml | 4 |
2 files changed, 22 insertions, 6 deletions
@@ -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 = [ @@ -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" |