-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (36 loc) · 1.17 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
[package]
name = "shellcoder"
version = "0.1.1"
edition = "2021"
authors = ["zadig <zadig@riseup.net>"]
rust-version = "1.61.0"
description = "Write shellcode payloads in a flash"
documentation = "https://docs.rs/shellcoder"
repository = "https://github.com/zadlg/shellcoder"
license = "Apache-2.0"
keywords = ["shellcode", "security", "offsec"]
categories = ["encoding", "development-tools"]
[features]
default = []
serde = ["dep:serde", "dep:serde_with"]
std = []
[dependencies]
serde = { version = "1.0.203", optional = true, features = ["derive"] }
serde_with = { version = "3.8.1", optional = true }
[lints.clippy]
all = { level = "deny", priority = -1 }
restriction = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
implicit_return = "allow"
pub_with_shorthand = "allow"
missing_trait_methods = "allow"
pattern_type_mismatch = "allow"
impl_trait_in_params = "allow"
question_mark_used = "allow"
little_endian_bytes = "allow"
big_endian_bytes = "allow"
blanket_clippy_restriction_lints = "allow"
semicolon_outside_block = "allow"
missing_transmute_annotations = "allow"