typos/Cargo.toml

28 lines
436 B
TOML
Raw Normal View History

[workspace]
2019-10-28 12:01:22 -04:00
members = [
2022-08-01 15:45:58 -04:00
"crates/*",
2019-10-28 12:01:22 -04:00
]
2023-04-19 09:34:07 -04:00
default-members = ["crates/typos-cli"]
2022-11-01 15:20:38 -04:00
resolver = "2"
2022-11-01 15:20:38 -04:00
[workspace.package]
2021-08-16 12:23:25 -04:00
license = "MIT OR Apache-2.0"
2019-10-25 11:58:24 -04:00
repository = "https://github.com/crate-ci/typos"
2022-06-01 07:53:10 -04:00
edition = "2021"
2022-10-04 11:51:03 -04:00
rust-version = "1.64.0" # MSRV
2021-11-08 11:11:02 -05:00
include = [
"src/**/*",
"Cargo.toml",
2022-03-11 10:56:29 -05:00
"Cargo.lock",
2021-11-08 11:11:02 -05:00
"LICENSE*",
"README.md",
2021-11-15 09:22:11 -05:00
"benches/**/*",
2021-11-08 11:11:02 -05:00
"examples/**/*"
]
2019-01-22 17:01:33 -05:00
2020-11-23 13:40:55 -05:00
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"