2019-08-08 11:04:51 -04:00
|
|
|
[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"
|
2019-08-08 11:04:51 -04:00
|
|
|
|
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"
|
2023-12-28 11:47:51 -05:00
|
|
|
rust-version = "1.75" # MSRV
|
2021-11-08 11:11:02 -05:00
|
|
|
include = [
|
2023-03-29 15:33:22 -04:00
|
|
|
"build.rs",
|
2021-11-08 11:11:02 -05:00
|
|
|
"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"
|
2023-09-18 15:04:32 -04:00
|
|
|
codegen-units = 1
|