-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.41 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
42
43
44
45
46
47
48
[package]
name = "mti"
version = "1.0.7-beta.1"
edition = "2021"
authors = ["[email protected]"]
description = "A Rust library that implements type-safe, prefix-enhanced identifiers based on the TypeID Specification"
license = "MIT OR Apache-2.0"
repository = "https://github.com/GovCraft/mti"
documentation = "https://docs.rs/mti"
readme = "README.md"
keywords = ["typeid", "uuid", "identifier", "distributed-systems"]
categories = ["data-structures", "development-tools", "encoding", "parser-implementations", "web-programming"]
[dependencies]
typeid_prefix = "1.1.1-beta.1"
typeid_suffix = "1.0.2-beta.1"
[dev-dependencies]
uuid = { version = "1.10.0", features = ["v4"] }
proptest = { version = "1.5.0", features = ["proptest-macro"] }
[features]
default = []
instrument = ["typeid_prefix/instrument", "typeid_suffix/instrument"]
[lints.rust]
unsafe_code = "deny"
missing_docs = "deny"
missing_debug_implementations = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
unused_results = "warn"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
must_use_candidate = "warn"
cargo_common_metadata = "warn"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]