Skip to content

Commit 3e56376

Browse files
authored
Update Cargo.toml
1 parent 592427a commit 3e56376

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

source-code/Cargo.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1+
[package]
2+
name = "HackerOS-Containers"
3+
version = "0.1.0"
4+
edition = "2021"
5+
authors = ["HackerOS Team <[email protected]>"]
6+
license = "MIT"
7+
description = "HackerOS Containers: Advanced container management tool for HackerOS with isolation, resource management, and real-time monitoring."
8+
repository = "https://github.com/hackeros/hackeros-containers"
19

10+
[dependencies]
11+
lexopt = "0.3.0" # For CLI argument parsing
12+
owo-colors = "3.5.0" # For colorful output
13+
miette = { version = "5.5.0", features = ["fancy"] } # For pretty error handling
14+
serde = { version = "1.0", features = ["derive"] } # For serialization/deserialization
15+
toml = "0.8.0" # For parsing .hk files (which are TOML-like)
16+
nix = "0.28.0" # For low-level system calls (namespaces, cgroups, etc.)
17+
oci-spec = "0.5.0" # For OCI spec compliance
18+
anyhow = "1.0" # For error handling
19+
log = "0.4" # For logging
20+
env_logger = "0.10" # For env-based logging
21+
colored = "2.0" # Additional coloring if needed

0 commit comments

Comments
 (0)