Skip to content

Commit fd34403

Browse files
committed
Fix missing dependencies
1 parent 2b1831b commit fd34403

1 file changed

Lines changed: 15 additions & 8 deletions

File tree

Cargo.toml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "netmgr"
3-
version = "1.0.0-b-unstable1"
4-
edition = "2024"
3+
version = "0.1.0-beta.1"
4+
edition = "2021"
55
authors = ["Rimaki <rimaki@rimakiproject.online>"]
66
description = "Cross-platform network management tool"
77
license = "MIT"
8-
repository = "https://github.com/yourusername/netmgr"
8+
repository = "https://github.com/RimakiTaema/netmgr"
99

1010
[[bin]]
1111
name = "netmgr"
@@ -34,6 +34,18 @@ env_logger = "0.10"
3434
crossterm = { version = "0.27", features = ["event-stream"] }
3535
dirs = "5.0"
3636

37+
# Time handling
38+
chrono = { version = "0.4", features = ["serde"] }
39+
40+
# System utilities
41+
which = "6.0"
42+
libc = "0.2"
43+
44+
# Common networking
45+
socket2 = "0.5"
46+
ipnet = "2.9"
47+
mac_address = "1.1"
48+
3749
# Networking - Linux
3850
[target.'cfg(target_os = "linux")'.dependencies]
3951
netlink-packet-route = "0.17"
@@ -57,11 +69,6 @@ windows = { version = "0.52", features = [
5769
system-configuration = "0.5"
5870
core-foundation = "0.9"
5971

60-
# Common networking
61-
socket2 = "0.5"
62-
ipnet = "2.9"
63-
mac_address = "1.1"
64-
6572
[dev-dependencies]
6673
tempfile = "3.8"
6774

0 commit comments

Comments
 (0)