forked from stratis-storage/libblkid-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (36 loc) · 1.18 KB
/
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
33
34
35
36
37
38
39
40
41
[package]
name = "libblkid-rs"
version = "0.3.2"
authors = ["John Baublitz <[email protected]>"]
edition = "2021"
rust-version = "1.71.1" # LOWEST SUPPORTED RUST TOOLCHAIN
description = "High level bindings for libblkid"
license = "MPL-2.0"
documentation = "https://docs.rs/libblkid-rs"
homepage = "https://stratis-storage.github.io"
repository = "https://github.com/stratis-storage/libblkid-rs"
categories = ["os::linux-apis", "api-bindings"]
keywords = ["storage"]
exclude = [".clippy.toml", ".githooks/*", ".github/*", ".gitignore", "Makefile"]
[dependencies.libblkid-rs-sys]
version = "0.3.0"
path = "./libblkid-rs-sys"
[dependencies]
either = "1.6.1"
libc = "0.2.121"
uuid = "1.0.0"
[features]
default = []
deprecated = []
pkg-config = ["libblkid-rs-sys/pkg-config"]
static = ["pkg-config", "libblkid-rs-sys/static"]
[lints.rust]
warnings = { level = "deny" }
future_incompatible = { level = "deny", priority = 1 }
unused = { level = "deny", priority = 2}
rust_2018_idioms = { level = "deny", priority = 3 }
nonstandard_style = { level = "deny", priority = 4 }
[lints.clippy]
all = { level = "deny" }
cargo = { level = "deny" , priority = 1}
from_over_into = { level = "allow", priority = 2 }