Skip to content

Commit

Permalink
chore: Use workspace inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Mar 29, 2023
1 parent 0838840 commit afd6a45
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand All @@ -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"]
Expand Down

0 comments on commit afd6a45

Please sign in to comment.