-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (61 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
73 lines (61 loc) · 1.8 KB
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
[package]
edition = "2021"
name = "medusa"
version = "0.1.0"
description = "Proof-of-concept kernel-level game cheat driver written in Rust"
repository = "https://github.com/PatchRequest/Medusa"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["windows", "driver", "kernel", "wdm", "game-hacking"]
categories = ["hardware-support"]
publish = false
[package.metadata.wdk.driver-model]
driver-type = "WDM"
[lib]
crate-type = ["cdylib"]
[build-dependencies]
wdk-build = { path = "../../crates/wdk-build", version = "0.4.0" }
[dependencies]
wdk-alloc = { path = "../../crates/wdk-alloc", version = "0.3.1" }
wdk = { path = "../../crates/wdk", version = "0.3.1" }
wdk-panic = { path = "../../crates/wdk-panic", version = "0.3.1" }
wdk-sys = { path = "../../crates/wdk-sys", version = "0.4.0" }
ntapi = "0.4.1"
[features]
default = []
gpio = ["wdk-sys/gpio"]
hid = ["wdk-sys/hid"]
parallel-ports = ["wdk-sys/parallel-ports"]
spb = ["wdk-sys/spb"]
storage = ["wdk-sys/storage"]
usb = ["wdk-sys/usb"]
nightly = ["wdk/nightly", "wdk-sys/nightly"]
[profile.dev]
panic = "abort"
lto = true
[profile.release]
panic = "abort"
lto = true
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "forbid"
[lints.clippy]
# Lint Groups
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
# Individual Lints
multiple_unsafe_ops_per_block = "forbid"
undocumented_unsafe_blocks = "forbid"
unnecessary_safety_doc = "forbid"
[lints.rustdoc]
bare_urls = "warn"
broken_intra_doc_links = "warn"
invalid_codeblock_attributes = "warn"
invalid_html_tags = "warn"
invalid_rust_codeblocks = "warn"
missing_crate_level_docs = "warn"
private_intra_doc_links = "warn"
redundant_explicit_links = "warn"
unescaped_backticks = "warn"