typos/Cargo.toml

30 lines
468 B
TOML
Raw Normal View History

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