Skip to content

Commit 0d1d343

Browse files
committed
set version
1 parent 3c189a8 commit 0d1d343

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

Cargo.toml

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6+
version = "0.0.1"
67
edition = "2021"
78
rust-version = "1.83"
89
homepage = "https://github.com/pollenjp/cdk-ansible"
@@ -41,3 +42,8 @@ toml = "0.8.19"
4142
[workspace.lints.rust]
4243

4344
[workspace.lints.clippy]
45+
46+
# The profile that 'dist' will build with
47+
[profile.dist]
48+
inherits = "release"
49+
lto = "thin"

crates/cdk-ansible-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdk-ansible-cli"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true

crates/cdk-ansible-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdk-ansible-core"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true

crates/cdk-ansible-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdk-ansible-macro"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true

crates/cdk-ansible-static/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdk-ansible-static"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true

crates/cdk-ansible-version/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdk-ansible-version"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true

crates/cdk-ansible/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdk-ansible"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true

0 commit comments

Comments
 (0)