-
Notifications
You must be signed in to change notification settings - Fork 104
/
Cargo.toml
36 lines (30 loc) · 868 Bytes
/
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
[package]
name = "cve-rs"
description = "Blazingly fast memory vulnerabilities, written in 100% safe Rust."
authors = ["Speykious", "BrightShard", "Creative0708"]
version = "0.6.0"
edition = "2021"
license-file = "LICENSE"
repository = "https://github.com/Speykious/cve-rs"
categories = ["rust-patterns"]
keywords = ["cve", "security", "soundness", "safety", "segfault"]
rust-version = "1.69.0"
[dependencies]
ureq = { version = "2.9.6", default-features = false, optional = true }
oorandom = { version = "11.1.3", optional = true }
clap = { version = "4.5.4", features = ["cargo", "help"] }
clap_complete = "4.5.2"
[dev-dependencies]
criterion = "0.5.1"
[profile.dev]
debug = false
[features]
default = []
download-more-ram = ["ureq"]
give-up = ["oorandom"]
step-on-lego = ["oorandom"]
[[bench]]
name = "transmute"
harness = false
[[example]]
name = "segfault"