-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (33 loc) · 1.02 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
[package]
name = "uapi-config"
version = "0.1.0"
license = "AGPL-3.0-only"
authors = ["Arnav Singh <[email protected]>"]
edition = "2021"
categories = ["config"]
description = "Rust implementation of the UAPI Configuration Files Specification"
documentation = "https://docs.rs/uapi-config/0.1.0/"
keywords = ["econf", "libeconf", "systemd", "uapi"]
readme = "README.md"
repository = "https://github.com/Arnavion/uapi-config"
include = [
"Cargo.toml",
"COPYING",
"README.md",
"src/**/*",
]
[dependencies]
dirs = { version = "5", default-features = false, optional = true }
[features]
# Enable this feature to use `dirs::config_dir()` in the implementation of `SearchDirectories::modern_user()`
dirs = ["dep:dirs"]
[lints.rust]
rust_2018_idioms = "deny"
warnings = "deny"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
default_trait_access = "allow"
# Ref: https://github.com/rust-lang/rust-clippy/issues/12270
lint_groups_priority = "allow"
must_use_candidate = "allow"