-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.13 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
[package]
name = "byte-transcoder"
version = "0.0.2"
edition = "2021"
rust-version = "1.81"
authors = ["Todd Everett Griffin <[email protected]>"]
repository = "https://github.com/goddtriffin/byte-transcoder-rs"
homepage = "https://www.toddgriffin.me/"
description = "A Rust+Typescript library to transcode higher-level data types to/from bytes."
license = "MIT"
keywords = ["byte", "transcode", "encode", "parse", "serialize"]
categories = [
"encoding",
"parsing",
"parser-implementations",
"compression",
"data-structures",
]
include = ["**/*.rs", "Cargo.toml", ".clippy.toml", "LICENSE", "README.md"]
[lib]
path = "src/lib.rs"
[lints.rust]
unsafe_code = { level = "forbid", priority = 0 }
[lints.clippy]
nursery = { level = "allow", priority = 1 }
all = { level = "deny", priority = -1 }
correctness = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
[dependencies]
uuid = "1.10.0"