mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 10:31:02 -05:00
chore: Use workspace inheritance
This commit is contained in:
parent
083884043c
commit
afd6a45ef7
1 changed files with 15 additions and 6 deletions
21
Cargo.toml
21
Cargo.toml
|
@ -1,10 +1,8 @@
|
||||||
[package]
|
[workspace]
|
||||||
name = "PROJECT"
|
resolver = "2"
|
||||||
version = "0.0.1"
|
|
||||||
description = "DESCRIPTION"
|
[workspace.package]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
categories = []
|
|
||||||
keywords = []
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.65.0" # MSRV
|
rust-version = "1.65.0" # MSRV
|
||||||
include = [
|
include = [
|
||||||
|
@ -17,6 +15,17 @@ include = [
|
||||||
"examples/**/*"
|
"examples/**/*"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name = "PROJECT"
|
||||||
|
version = "0.0.1"
|
||||||
|
description = "DESCRIPTION"
|
||||||
|
categories = []
|
||||||
|
keywords = []
|
||||||
|
license.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
rust-version.workspace = true
|
||||||
|
include.workspace = true
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
Loading…
Reference in a new issue