forked from superradcompany/microsandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
107 lines (104 loc) · 2.59 KB
/
Copy pathCargo.toml
File metadata and controls
107 lines (104 loc) · 2.59 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[workspace]
resolver = "3"
exclude = ["crates/agentd"]
members = [
"crates/cli",
"crates/db",
"crates/filesystem",
"crates/image",
"crates/microsandbox",
"crates/migration",
"crates/protocol",
"crates/runtime",
"crates/utils",
"examples/rust/net-basic",
"examples/rust/net-dns",
"examples/rust/net-policy",
"examples/rust/net-ports",
"examples/rust/net-secrets",
"examples/rust/net-tls",
"examples/rust/root-bind",
"examples/rust/root-block",
"examples/rust/root-oci",
"examples/rust/rootfs-patch",
"examples/rust/volume-named",
"sdk/node-ts",
]
[workspace.package]
authors = ["Super Rad Company <development@superrad.company>"]
repository = "https://github.com/superradcompany/microsandbox"
version = "0.3.12"
license = "Apache-2.0"
edition = "2024"
[profile.release]
codegen-units = 1
lto = true
strip = true
panic = "abort"
[workspace.dependencies]
anyhow = "1.0"
astral-tokio-tar = "0.6"
async-compression = "0.4"
bytes = "1.9"
crc32c = "0.6"
chrono = { version = "0.4", features = ["serde"] }
ciborium = "0.2"
clap = { version = "4.5", features = ["color", "derive"] }
console = "0.16"
crossbeam-queue = "0.3"
crossterm = { version = "0.29.0", features = ["events"] }
dirs = "6.0"
etherparse = "0.19"
flate2 = "1.0"
futures = "0.3"
hex = "0.4"
hickory-proto = "0.25"
hickory-resolver = "0.25"
indicatif = "0.18"
ipnetwork = { version = "0.21.0", features = ["serde"] }
libc = "0.2"
nix = "0.30"
oci-client = "0.16"
oci-spec = "0.9.0"
rand = "0.10.0"
reqwest = { version = "0.13", features = ["json", "stream"] }
scopeguard = "1.2"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0"
sha2 = "0.11.0"
smoltcp = { version = "0.13", default-features = false }
tar = "0.4"
time = "0.3"
tempfile = "3.15"
thiserror = "2.0"
tokio = { version = "1.42", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
typed-builder = "0.23"
which = "8"
xattr = "1.3"
sea-orm = { version = "1.1", default-features = false, features = [
"macros",
"runtime-tokio-rustls",
"sqlx-sqlite",
"with-chrono",
] }
sea-orm-migration = { version = "1.1", default-features = false, features = [
"runtime-tokio-rustls",
"sqlx-sqlite",
] }
ureq = "3"
rustls = { version = "0.23", default-features = false, features = [
"logging",
"ring",
"std",
"tls12",
] }
tokio-rustls = "0.26"
rustls-pemfile = "2"
rustls-native-certs = "0.8"
rcgen = { version = "0.13", features = ["x509-parser"] }
lru = "0.16.3"
rpassword = "7"