-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 988 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 988 Bytes
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
[workspace]
members = [
"crates/port-agent-protocol",
"crates/port-cli",
"crates/port-guest-agent",
"crates/port-hosted-protocol",
"crates/port-model",
"crates/port-runtime",
"crates/port-sdk",
]
resolver = "2"
[workspace.package]
authors = ["Port contributors"]
edition = "2024"
homepage = "https://github.com/spoke-sh/port"
license = "MIT"
repository = "https://github.com/spoke-sh/port"
rust-version = "1.85"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1.0.100"
axum = "0.8.4"
clap = { version = "4.5.40", features = ["derive", "string", "wrap_help"] }
libc = "0.2.177"
reqwest = { version = "0.12.15", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
portable-pty = "0.9.0"
tempfile = "3.23.0"
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread", "net"] }
toml = "0.8.23"
vsock = "0.5.3"
[profile.dist]
inherits = "release"
lto = "thin"