-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (27 loc) · 1.05 KB
/
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
[package]
name = "assertables"
version = "9.5.0"
authors = ["Joel Parker Henderson <[email protected]>"]
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 GPL-2.0 OR GPL-3.0 OR BSD-3-Clause"
keywords = ["assert", "assertable", "assertion", "macro", "test"]
categories = ["development-tools", "development-tools::testing", "rust-patterns"]
include = ["src/**/*", "LICENSE.md", "README.md"]
[profile.dev]
panic = "unwind"
[profile.release]
panic = "unwind"
# generated by 'cargo dist init'
[profile.dist]
inherits = "release"
debug = true
split-debuginfo = "packed"
[dependencies]
[dev-dependencies]
cargo-dist = "0.22.1" # Cargo distribution builder for release engineering
cargo-release = "0.25.12" # Cargo release automation
cargo-diet = "1.2.7" # Cargo command to make your crate lean
regex = "1.11.0" # Regular expressions parser, compiler, and executer