X-Git-Url: https://code.octet-stream.net/netwatcher/blobdiff_plain/5dd5aea6e6c70688ad4288df1eaafd97ac05720a..18f2e52c414d1c98bbca61288b35f8b43cec9f8b:/Cargo.toml?ds=inline diff --git a/Cargo.toml b/Cargo.toml index 45cff20..0a9eca0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,14 +2,22 @@ name = "netwatcher" version = "0.1.0" edition = "2021" +license = "MIT" +description = "List network interfaces and watch for changes efficiently" +repository = "https://github.com/thombles/netwatcher" +readme = "README.md" +authors = ["Thomas Karpiniec "] +keywords = ["interfaces", "ip", "adapter"] +categories = ["network-programming"] [dependencies] -[target.'cfg(any(target_vendor = "apple", target_os = "linux"))'.dependencies] +[target.'cfg(any(target_vendor = "apple", target_os = "linux", target_os = "android"))'.dependencies] nix = { version = "0.29.0", features = ["net"] } [target.'cfg(target_vendor = "apple")'.dependencies] block2 = "0.5.1" +objc2 = "0.5.2" [target.'cfg(windows)'.dependencies.windows] version = "0.56.0"