-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
75 lines (68 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
authors = ["Nando Lawson"]
categories = ["algorithms", "development-tools"]
description = "Library for product key generation / validation for Windows 95 and other Microsoft products"
edition = "2021"
exclude = [
".devcontainer/",
".github/",
"pkg/",
"target/",
".gitignore",
"CONTRIBUTING.md",
"Dockerfile",
]
keywords = ["generator", "no_std", "product_key", "validator", "wasm"]
license = "GPL-3.0"
name = "keyforge95"
readme = "README.md"
repository = "https://github.com/nandolawson/keyforge95"
version = "3.1.1"
[lib]
crate-type = ["rlib", "cdylib"]
doc = true
doctest = true
harness = true
proc-macro = false
test = true
[dependencies]
rand_core = { version = "0.6.4", features = ["getrandom"] }
[target.wasm32-unknown-unknown.dependencies]
getrandom = { version = "0.2.15", features = ["js"] }
wasm-bindgen = "0.2.99"
[lints.clippy]
cargo = "deny"
complexity = "deny"
correctness = "deny"
pedantic = "deny"
perf = "deny"
style = "deny"
suspicious = "deny"
[lints.rust]
future-incompatible = "deny"
keyword-idents = "deny"
let-underscore = "deny"
nonstandard-style = "deny"
refining-impl-trait = "deny"
rust-2018-compatibility = "deny"
rust-2018-idioms = "deny"
rust-2021-compatibility = "deny"
rust-2024-compatibility = "deny"
unused = "deny"
warnings = "deny"
[profile.dev]
codegen-units = 256
debug = true
incremental = true
lto = false
opt-level = 0
panic = "unwind"
strip = false
[profile.release]
codegen-units = 1
debug = "none"
incremental = false
lto = "fat"
opt-level = 3
panic = "abort"
strip = true