-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (30 loc) · 833 Bytes
/
Cargo.toml
File metadata and controls
40 lines (30 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "ubitix"
version = "0.0.0-nightly"
edition = "2024"
[dependencies]
# Async runtime and utilities
tokio = { version = "1.49.0", features = ["rt", "rt-multi-thread", "macros", "fs", "io-util", "signal"] }
# CLI argument parsing
clap = { version = "4.5.54", features = ["derive"] }
# Logging facade and simple log backend
log = "0.4.29"
simplelog = "0.12.2"
# Error reporting with rich diagnostics
color-eyre = "0.6.5"
# TOML
toml = "0.9.8"
serde_json = "1.0.149"
serde = "1.0.228"
# Regex processing
regex = "1.12.2"
# GitHub API client
octocrab = "0.49.5"
# File-system notifications (cross-platform)
notify = "8.2.0"
# IP network parsing and utilities
ipnet = { version = "2.11.0", features = ["serde"] }
iptables = "0.6.0"
# Standard OS-specific directories
directories = "6.0.0"
walkdir_minimal = "1.0.1"