blob: db6503b8fb7b31a16e8cca7989f6452efc389af0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[package]
name = "ozone-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
ozone = { path = "../ozone" }
tokio = { version = "1.43.0", features = ["rt", "rt-multi-thread", "macros"] }
simple_logger = { version = "5.0.0", features = ["colors"] }
log = "0.4.25"
clap = { version = "4.5.27", features = ["derive", "cargo"] }
clap_complete = { version = "4.5.44", features = ["unstable-dynamic"] }
lazy_static = "1.5.0"
regex = "1.11.1"
uuid = { version = "1.12.1", features = ["v4"] }
|