peach-workspace/peach-network/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

2021-08-06 17:58:40 +00:00
[package]
name = "peach-network"
2021-12-14 14:13:27 +00:00
version = "0.4.0"
2021-12-13 08:54:38 +00:00
authors = ["Andrew Reid <glyph@mycelial.technology>"]
2021-12-14 14:13:27 +00:00
edition = "2021"
2021-12-13 08:54:38 +00:00
description = "Query and configure network interfaces."
2021-08-06 17:58:40 +00:00
homepage = "https://opencollective.com/peachcloud"
2021-12-13 08:54:38 +00:00
repository = "ihttps://git.coopcloud.tech/PeachCloud/peach-workspace/src/branch/main/peach-network"
2021-08-06 17:58:40 +00:00
readme = "README.md"
2021-12-13 09:00:16 +00:00
license = "LGPL-3.0-only"
2021-08-06 17:58:40 +00:00
publish = false
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
get_if_addrs = "0.5.3"
2021-12-13 08:54:38 +00:00
miniserde = { version = "0.1.15", optional = true }
probes = "0.4.1"
serde = { version = "1.0.130", features = ["derive"], optional = true }
2021-08-06 17:58:40 +00:00
regex = "1"
# replace this with crate import once latest changes have been published
wpactrl = { git = "https://github.com/sauyon/wpa-ctrl-rs.git", branch = "master" }
2021-12-13 08:54:38 +00:00
[features]
default = []
# Provide `Serialize` and `Deserialize` traits for library structs using `miniserde`
miniserde_support = ["miniserde"]
# Provide `Serialize` and `Deserialize` traits for library structs using `serde`
serde_support = ["serde"]