summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 5b3e38dc6a05468a157d6acfcb0fa52ae1e0c3b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "o3launcher"
version = "0.1.0"
edition = "2021"

[dependencies]
chrono = { version = "0.4.39", default-features = false, features = ["std", "alloc", "clock", "now", "serde"] }
const_format = "0.2.34"
futures = "0.3.31"
lazy_static = "1.5.0"
log = "0.4.22"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["json", "stream"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
sha1_smol = { version = "1.0.1", features = ["alloc", "std", "serde"] }
sysinfo = { version = "0.33.1", features = ["system", "multithread"] }
tokio = { version = "1.42.0", features = ["fs", "io-util", "sync", "rt"] }
tokio-stream = { version = "0.1.17", features = ["fs"] }
walkdir = "2.5.0"
zip = { version = "2.2.2", default-features = false, features = ["bzip2", "deflate", "deflate64", "lzma", "xz"] }

[workspace]
members = [ "ozone-cli", "ozone-ui" ]