-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (58 loc) · 1.81 KB
/
Cargo.toml
File metadata and controls
65 lines (58 loc) · 1.81 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
resolver = "2"
members = [
"packages/core",
"packages/cli-rust",
]
exclude = [
"packages/opencode/packages/opencode-broker",
"packages/opencode/packages/desktop/src-tauri",
]
[workspace.package]
version = "25.1.3"
edition = "2024"
rust-version = "1.89"
license = "MIT"
repository = "https://github.com/pRizz/opencode-cloud"
homepage = "https://github.com/pRizz/opencode-cloud"
documentation = "https://docs.rs/opencode-cloud"
keywords = ["opencode", "ai", "cloud", "docker", "cli"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
opencode-cloud-core = { version = "25.1.3", path = "packages/core" }
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros", "signal", "io-std", "io-util"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
jsonc-parser = { version = "0.29", features = ["serde"] }
directories = "6"
thiserror = "2"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
console = "0.16"
napi = { version = "3", features = ["tokio_rt", "napi9"] }
napi-derive = "3"
tempfile = "3"
# Docker integration
bollard = { version = "0.20.1", features = ["chrono", "buildkit"] }
futures-util = "0.3"
tar = "0.4"
flate2 = "1.1"
tokio-retry = "0.3"
indicatif = { version = "0.18", features = ["tokio", "futures"] }
http-body-util = "0.1"
bytes = "1.11"
reqwest = { version = "0.13", default-features = false, features = ["rustls", "webpki-roots", "json"] }
# CLI utilities
webbrowser = "1.0"
humantime = "2.3"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
# Platform service management
plist = "1.8"
dialoguer = "0.12"
# CLI output formatting
comfy-table = "7"
# Random generation
rand = "0.9"
sysinfo = "0.38"