forked from mdevctl/mdevctl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 900 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
[package]
name = "mdevctl"
# For now, just bump the y version on release (x.y.z)
version = "1.4.0"
authors = ["Jonathon Jongsma <jjongsma@redhat.com>"]
edition = "2018"
license = "LGPL-2.1"
description = "A mediated device management utility for Linux"
repository = "https://github.com/mdevctl/mdevctl"
homepage = "https://github.com/mdevctl/mdevctl"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = { version = "4.0", features = ["derive", "wrap_help"] }
env_logger = "0.9.0"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = {version = "1.0", features = ["preserve_order"]}
uuid = {version = "1.0", features = ["v4"]}
[build-dependencies]
clap = { version = "4.0", features = ["derive"]}
clap_complete = "4.0"
uuid = "1.0"
[dev-dependencies]
nix = "0.26"
libc = "0.2"
tempfile = "3"