Skip to content

Commit afd6a45

Browse files
committed
chore: Use workspace inheritance
1 parent 0838840 commit afd6a45

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

Cargo.toml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
[package]
2-
name = "PROJECT"
3-
version = "0.0.1"
4-
description = "DESCRIPTION"
1+
[workspace]
2+
resolver = "2"
3+
4+
[workspace.package]
55
license = "MIT OR Apache-2.0"
6-
categories = []
7-
keywords = []
86
edition = "2021"
97
rust-version = "1.65.0" # MSRV
108
include = [
@@ -17,6 +15,17 @@ include = [
1715
"examples/**/*"
1816
]
1917

18+
[package]
19+
name = "PROJECT"
20+
version = "0.0.1"
21+
description = "DESCRIPTION"
22+
categories = []
23+
keywords = []
24+
license.workspace = true
25+
edition.workspace = true
26+
rust-version.workspace = true
27+
include.workspace = true
28+
2029
[package.metadata.docs.rs]
2130
all-features = true
2231
rustdoc-args = ["--cfg", "docsrs"]

0 commit comments

Comments
 (0)