diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-03-21 16:16:38 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-03-21 16:16:38 +0100 |
commit | b722c51013a7405e1bf18b4a6e9430798a594e2f (patch) | |
tree | 4af1e36f8feff128938e7021a816d338669017f9 | |
parent | 3829cb2d21ae2613cebe6c79f29ef217ca034972 (diff) |
add .git suffix to pppoe-rs url
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -791,7 +791,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pppoe" version = "0.1.0" -source = "git+https://github.com/rsdsl/pppoe-rs#10b0a3c6f5babb937a3c60fad129da5528d500b3" +source = "git+https://github.com/rsdsl/pppoe-rs.git#10b0a3c6f5babb937a3c60fad129da5528d500b3" dependencies = [ "byteorder", "libc", @@ -802,7 +802,7 @@ dependencies = [ [[package]] name = "pppoe-sys" version = "0.1.0" -source = "git+https://github.com/rsdsl/pppoe-rs#10b0a3c6f5babb937a3c60fad129da5528d500b3" +source = "git+https://github.com/rsdsl/pppoe-rs.git#10b0a3c6f5babb937a3c60fad129da5528d500b3" dependencies = [ "bindgen", "cc", @@ -10,7 +10,7 @@ edition = "2021" [dependencies] byteorder = "1.4.3" md5 = "0.7.0" -pppoe = { git = "https://github.com/rsdsl/pppoe-rs", version = "0.1.0", features = ["socket"] } +pppoe = { git = "https://github.com/rsdsl/pppoe-rs.git", version = "0.1.0", features = ["socket"] } rand = "0.8.5" rsdsl_ip_config = { git = "https://github.com/rsdsl/ip_config.git", version = "0.1.0" } rsdsl_netlinkd = { git = "https://github.com/rsdsl/netlinkd.git", version = "0.1.0" } |