-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
54 lines (48 loc) · 1.4 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
[workspace]
members = [".", "hegel-macros"]
[package]
name = "hegeltest"
version = "0.2.6"
edition = "2024"
# if you bump this, also bump ci.yml and hegel-macros/Cargo.toml
rust-version = "1.86"
exclude = [
"/.claude",
"/.github",
"/nix",
"/RELEASE-sample.md",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/hegeldev/hegel-rust"
homepage = "http://hegel.dev"
description = "Property-based testing for Rust, built on Hypothesis"
# Ideally we would replace property-testing with property-based-testing,
# but crates.io enforces that keywords be less than 20 characters.
keywords = ["testing", "fuzzing", "property-testing"]
categories = ["development-tools::testing"]
[lib]
name = "hegel"
[dependencies]
serde = { version = "1.0.103", features = ["derive"] }
paste = "1.0"
tempfile = "3.0"
ciborium = "0.2.2"
crc32fast = "1.4"
hegeltest-macros = { version = "=0.2.6", path = "hegel-macros" }
# optional feature dependencies
rand = { version = "0.9", optional = true }
serde_json = { version = "1.0.61", optional = true }
[dev-dependencies]
regex = "1.0"
rand = "0.9"
serde_json = "1.0.61"
[features]
default = []
rand = ["dep:rand"]
antithesis = ["dep:serde_json"]
[package.metadata.docs.rs]
all-features = true
# -D warnings means "deny warnings", which actually means "turn warnings into errors". Have
# we mentioned naming things is hard?
rustdoc-args = ["--cfg", "docsrs", "-D", "warnings"]