-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (46 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
51 lines (46 loc) · 1.28 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
[workspace]
members = ["fc-api", "fc-sdk", "fc-cli"]
resolver = "3"
[workspace.package]
edition = "2024"
version = "0.2.3"
authors = ["ArcBox Labs <oss@arcbox.dev>", "AprilNEA <dev@aprilnea.me>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arcboxlabs/firecracker-client"
[workspace.dependencies]
firecracker = { version = "0.2.3", path = "." }
fc-api = { version = "0.2.3", path = "fc-api" }
fc-sdk = { version = "0.2.3", path = "fc-sdk" }
fc-cli = { version = "0.2.3", path = "fc-cli" }
openapiv3 = "2"
progenitor = "0.11"
progenitor-client = "0.11"
prettyplease = "0.2"
serde_json = "1"
syn = "2"
reqwest = { version = "0.12", default-features = false, features = [
"json",
"stream",
] }
serde = { version = "1", features = ["derive"] }
futures = "0.3"
libc = "0.2"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
sha2 = "0.10"
clap = { version = "4.5", features = ["derive"] }
[package]
name = "firecracker"
description = "Rust client SDK for the Firecracker microVM API"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[features]
default = []
bundled-runtime = ["dep:sha2"]
[dependencies]
fc-api.workspace = true
fc-sdk.workspace = true
sha2 = { workspace = true, optional = true }