• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.48"
15name = "data-encoding"
16version = "2.8.0"
17authors = ["Julien Cretin <git@ia0.eu>"]
18build = false
19include = [
20    "Cargo.toml",
21    "LICENSE",
22    "README.md",
23    "src/lib.rs",
24]
25autolib = false
26autobins = false
27autoexamples = false
28autotests = false
29autobenches = false
30description = "Efficient and customizable data-encoding functions like base64, base32, and hex"
31documentation = "https://docs.rs/data-encoding"
32readme = "README.md"
33keywords = [
34    "no_std",
35    "base64",
36    "base32",
37    "hex",
38]
39categories = [
40    "encoding",
41    "no-std",
42]
43license = "MIT"
44repository = "https://github.com/ia0/data-encoding"
45
46[package.metadata.docs.rs]
47rustdoc-args = ["--cfg=docsrs"]
48
49[features]
50alloc = []
51default = ["std"]
52std = ["alloc"]
53
54[lib]
55name = "data_encoding"
56path = "src/lib.rs"
57
58[lints.clippy]
59undocumented-unsafe-blocks = "warn"
60
61[lints.rust]
62elided-lifetimes-in-paths = "warn"
63let-underscore-drop = "warn"
64missing-debug-implementations = "warn"
65missing-docs = "warn"
66unreachable-pub = "warn"
67unsafe-op-in-unsafe-fn = "warn"
68unused-results = "warn"
69