forked from stratis-storage/libcryptsetup-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1.06 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
[package]
name = "libcryptsetup-rs-sys"
version = "0.4.0"
authors = ["John Baublitz <[email protected]>"]
edition = "2021"
rust-version = "1.74.0" # LOWEST SUPPORTED RUST TOOLCHAIN
description = "Low level bindings for libcryptsetup"
license = "MPL-2.0"
documentation = "https://docs.rs/libcryptsetup-rs-sys"
homepage = "https://stratis-storage.github.io/"
repository = "https://github.com/stratis-storage/libcryptsetup-rs"
categories = ["external-ffi-bindings", "os::linux-apis"]
keywords = ["storage", "cryptsetup"]
[build-dependencies]
cc = "1.0.45"
pkg-config = "0.3.17"
semver = "1.0.0"
[build-dependencies.bindgen]
default-features = false
features = ["runtime"]
version = "0.69.0"
[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 }
multiple-crate-versions = { level = "allow", priority = 2 }