-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1.36 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
[package]
name = "assertables"
version = "9.9.0"
authors = ["Joel Parker Henderson <joel@joelparkerhenderson.com>"]
edition = "2021"
description = "Assertables: assert macros for better testing, debugging, quality assurance, and runtime reliability."
readme = "README.md"
repository = "https://github.com/sixarm/assertables-rust-crate/"
license = "MIT OR Apache-2.0 OR BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only"
keywords = ["assert", "assertable", "assertion", "macro", "test"]
categories = ["development-tools", "development-tools::testing", "rust-patterns"]
include = ["src/**/*", "LICENSE.md", "README.md", "llms.txt", "llms.json"]
[profile.dev]
panic = "unwind"
[profile.release]
panic = "unwind"
# generated by 'cargo dist init'
[profile.dist]
inherits = "release"
debug = true
split-debuginfo = "packed"
[build-dependencies]
regex = "1.12" # Regular expressions parser, compiler, and executer
walkdir = "2.5" # Recursively walk a directory.
[dev-dependencies]
cargo-diet = "1.3" # Make your crate lean
cargo-deny = "0.19" # Lint dependencies
cargo-dist = "0.31" # Distribution builder for release engineering
cargo-release = "1.1" # Release automation
cargo-semver-checks = "0.47" # Scan for semantic version errors
regex = "1.12" # Regular expressions parser, compiler, and executer
rustdoc-md = "0.2" # Convert Rust documentation JSON into clean, organized Markdown files.