-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 855 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[workspace]
resolver = "3"
members = [
"examples/doc",
"microscpi",
"microscpi-common",
"microscpi-doc",
"microscpi-macros",
"microscpi/fuzz",
]
[workspace.package]
version = "0.6.0"
authors = ["Thomas Gatzweiler <mail@thomasgatzweiler.com>"]
edition = "2024"
homepage = "https://github.com/7h0ma5/microscpi"
repository = "https://github.com/7h0ma5/microscpi"
license = "MIT"
[workspace.dependencies]
microscpi = { path = "microscpi", version = "0.6.0" }
microscpi-common = { path = "microscpi-common", version = "0.6.0" }
microscpi-doc = { path = "microscpi-doc", version = "0.6.0" }
microscpi-macros = { path = "microscpi-macros", version = "0.6.0" }
[workspace.metadata.release]
allow-branch = ["main"]
publish = true
shared-version = true
consolidate-commits = true
tag-name = "v{{version}}"
tag-message = "Release version {{version}}"