Skip to content

Commit 62b7a6e

Browse files
committed
Lean on that workspace
1 parent 6bc8371 commit 62b7a6e

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,13 @@ members = [
44
"source/scoped-mutex",
55
"source/scoped-mutex-traits",
66
]
7+
8+
[workspace.package]
9+
edition = "2021"
10+
authors = [
11+
"James Munns <[email protected]>",
12+
"Eliza Weisman <[email protected]>",
13+
]
14+
readme = "./README.md"
15+
license = "MIT OR Apache-2.0"
16+
repository = "https://github.com/tosc-rs/scoped-mutex"

source/scoped-mutex-traits/Cargo.toml

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
[package]
22
name = "scoped-mutex-traits"
33
version = "1.0.0"
4-
authors = [
5-
"James Munns <[email protected]>",
6-
"Eliza Weisman <[email protected]>",
7-
]
8-
edition = "2021"
9-
readme = "../../README.md"
10-
repository = "https://github.com/tosc-rs/scoped-mutex"
4+
authors.workspace = true
5+
edition.workspace = true
6+
readme.workspace = true
7+
license.workspace = true
8+
repository.workspace = true
119
description = "An abstraction over closure-based mutexes"
12-
license = "MIT OR Apache-2.0"
10+
1311
categories = [
1412
"embedded",
1513
"no-std",
1614
]
17-
documentation = "https://docs.rs/scoped-mutex/"
15+
documentation = "https://docs.rs/scoped-mutex-traits/"
1816

1917
[package.metadata.docs.rs]
2018
all-features = true

source/scoped-mutex/Cargo.toml

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
[package]
22
name = "scoped-mutex"
33
version = "0.1.0"
4-
authors = [
5-
"James Munns <[email protected]>",
6-
"Eliza Weisman <[email protected]>",
7-
]
8-
edition = "2021"
9-
readme = "../../README.md"
10-
repository = "https://github.com/tosc-rs/scoped-mutex"
114
description = "An abstraction over closure-based mutexes"
12-
license = "MIT OR Apache-2.0"
135
categories = [
146
"embedded",
157
"no-std",
168
]
179
documentation = "https://docs.rs/scoped-mutex/"
10+
authors.workspace = true
11+
edition.workspace = true
12+
readme.workspace = true
13+
license.workspace = true
14+
repository.workspace = true
1815

1916
[package.metadata.docs.rs]
2017
all-features = true

0 commit comments

Comments
 (0)