mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00: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]
|
||||
name = "PROJECT"
|
||||
version = "0.0.1"
|
||||
description = "DESCRIPTION"
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
license = "MIT OR Apache-2.0"
|
||||
categories = []
|
||||
keywords = []
|
||||
edition = "2021"
|
||||
rust-version = "1.65.0" # MSRV
|
||||
include = [
|
||||
|
@ -17,6 +15,17 @@ include = [
|
|||
"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]
|
||||
all-features = true
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
|
Loading…
Reference in a new issue