Skip to content

Commit ca1800f

Browse files
committed
[Perf] unified version for packages
1 parent e881c59 commit ca1800f

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
[workspace]
22
resolver = "2"
33

4+
[workspace.package]
5+
version = "0.11.6"
6+
edition = "2021"
7+
authors = ["[email protected]"]
8+
9+
410
members = ["cli", "core", "wasm", "xtask"]

cli/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "codesnap-cli"
3-
version = "0.11.5"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
5+
authors.workspace = true
56
description = "CLI tools for generating beautiful code snapshots"
67
license = "MIT"
78
repository = "https://github.com/mistricky/CodeSnap"

core/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "codesnap"
3-
version = "0.11.5"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
5+
authors.workspace = true
56
description = "Pure Rust library for generating beautiful code snapshots"
67
license = "MIT"
78
repository = "https://github.com/mistricky/CodeSnap"

wasm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "codesnap-wasm"
3-
version = "0.1.0"
4-
authors = ["[email protected]"]
3+
version.workspace = true
4+
edition.workspace = true
5+
authors.workspace = true
56
description = "CodeSnap WASM portal"
67
license = "MIT"
78
repository = "https://github.com/mistricky/CodeSnap"
8-
edition = "2021"
99

1010
[lib]
1111
crate-type = ["cdylib"]

0 commit comments

Comments
 (0)