forked from os-checker/plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 926 Bytes
/
Cargo.toml
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
[package]
name = "os-checker-plugin"
version = "0.1.4"
edition = "2021"
# dual licensing: "GPL-3.0 OR MulanPubL"
# MulanPubL is not listed by SPDX, failing to be published to crates.io.
# Thus use a license and another license-file as a workaround,
license = "GPL-3.0"
license-file = "./LICENSE.MulanPubL"
exclude = [".github"]
repository = "https://github.com/os-checker/plugin"
description = "a lib used in os-checker's plugins, containing common utilities"
[dependencies]
duct = "0.13"
jiff = { version = "0.1", features = ["serde"] }
camino = "1"
compact_str = "0.8"
indexmap = { version = "2", features = ["serde"] }
cargo_metadata = "0.18"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
# error handling
eyre = "0.6"
color-eyre = "0.6"
# logger
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-error = "0.2"