This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (58 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
74 lines (58 loc) · 1.64 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
66
67
68
69
70
71
72
73
74
[package]
name = "arcbox-desktop"
version = "0.1.0"
edition = "2024"
license = "LicenseRef-Proprietary"
repository = "https://github.com/arcboxd/arcbox-desktop"
publish = false
[package.metadata.arcbox]
tier = "enterprise"
commercial-use = "license-required"
[dependencies]
# GPUI core
gpui = "0.2.2"
# GPUI component library for Input, Button, etc.
gpui-component = "0.5.0"
# HTTP client for remote image loading
reqwest = { version = "0.12", features = ["json"] }
# Error handling
anyhow = "1"
# ArcBox core crates
arcbox-api = { path = "../arcbox/crates/arcbox-api" }
prost = "0.13"
# Docker image icons
dimicon = { path = "../dimicon" }
# gRPC
tonic = "0.12"
tower = "0.4"
hyper-util = "0.1"
# Async
tokio = { version = "1", features = ["full"] }
futures = "0.3"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Date/time
chrono = { version = "0.4", features = ["serde"] }
# Directories
dirs = "5"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.26"
objc = "0.2"
[package.metadata.bundle]
name = "ArcBox"
identifier = "com.aprilnea.arcbox"
icon = ["bundle/AppIcon.icns"]
copyright = "Copyright © 2026 AprilNEA LLC. All rights reserved."
category = "public.app-category.developer-tools"
osx_minimum_system_version = "12.0"
short_description = "ArcBox is a Docker management desktop application."
[package.metadata.winres]
OriginalFilename = "arcbox.exe"
LegalCopyright = "Copyright © 2026 AprilNEA LLC. All rights reserved."
[package.metadata.appimage]
icon = "bundle/arcbox.png"
assets = ["assets/arcbox.desktop"]