-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
43 lines (39 loc) · 1.05 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
[package]
authors = ["Michael Lodder <redmike7@gmail.com>"]
description = """
Rust crate for handling ISO 3166-1.
Each country has a three digit code, two letter code, three letter code,
full state name, and short english aliases.
"""
documentation = "https://docs.rs/celes/"
categories = ["encoding", "parsing"]
edition = "2021"
homepage = "https://crates.io/crates/celes"
include = [
"src/*.rs",
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md"
]
keywords = ["iso3166", "alpha2", "alpha3", "country", "codes"]
license = "Apache-2.0 OR MIT"
name = "celes"
readme = "README.md"
repository = "https://github.com/mikelodder7/celes"
version = "2.5.0"
[dependencies]
serde = { version = "1", default-features = false, features = ["derive"] }
[dev-dependencies]
serde_json = "1.0"
[lints.rust]
missing_docs = "warn"
missing_debug_implementations = "warn"
missing_copy_implementations = "warn"
rust_2018_idioms = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unused = "warn"
[lints.clippy]
mod_module_files = "warn"
unwrap_used = "deny"