-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 940 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 940 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
[package]
name = "vume"
version = "0.2.0"
edition = "2021"
description = "Instant microVM provisioning via Firecracker and ZFS"
license = "MIT"
repository = "https://github.com/scttnlsn/vume"
readme = "README.md"
exclude = ["tests/", "config/", "scripts/", "Makefile", "install.sh", "vume.sh"]
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
env_logger = "0.11"
log = "0.4"
nix = { version = "0.29", features = ["signal"] }
reqwest = { version = "0.13", default-features = false, features = ["blocking", "json"] }
rusqlite = { version = "0.35", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ssh2 = { version = "0.9", features = ["vendored-openssl"] }
time = { version = "0.3", default-features = false, features = ["std", "formatting", "macros"] }
toml = "0.8"
uuid = { version = "1", features = ["v4"] }
[profile.release]
lto = true
strip = true
codegen-units = 1