Skip to content

Commit 54660c6

Browse files
committed
chore: Integrate build-rs into the workspace
1 parent 8b9eaa5 commit 54660c6

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ anstyle = "1.0.8"
2424
anyhow = "1.0.86"
2525
base64 = "0.22.1"
2626
blake3 = "1.5.2"
27+
build-rs = { version = "0.2.0", path = "crates/build-rs" }
2728
bytesize = "1.3"
2829
cargo = { path = "" }
2930
cargo-credential = { version = "0.4.2", path = "credential/cargo-credential" }
@@ -107,6 +108,7 @@ tracing = { version = "0.1.40", default-features = false, features = ["std"] } #
107108
tracing-chrome = "0.7.2"
108109
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
109110
unicase = "2.7.0"
111+
unicode-ident = "1.0.13"
110112
unicode-width = "0.2.0"
111113
unicode-xid = "0.2.4"
112114
url = "2.5.2"

crates/build-rs-test-lib/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[package]
22
name = "build-rs-test-lib"
3-
version = "0.2.0"
4-
edition = "2021"
5-
rust-version = "1.76"
3+
version = "0.0.0"
4+
edition.workspace = true
65
publish = false
76

87
[features]
98
unstable = ["build-rs/unstable"]
109

1110
[build-dependencies]
12-
build-rs = { path = "../build-rs" }
11+
build-rs.workspace = true

crates/build-rs/Cargo.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[package]
22
name = "build-rs"
33
version = "0.2.0"
4-
edition = "2021"
5-
rust-version = "1.76"
6-
publish = false
7-
8-
[dependencies]
9-
unicode-ident = "1.0.13"
4+
rust-version.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
homepage.workspace = true
8+
repository.workspace = true
9+
description = "API for writing Cargo `build.rs` files"
1010

1111
[features]
12-
1312
## Experimental API. This feature flag is **NOT** semver stable.
1413
unstable = []
14+
15+
[dependencies]
16+
unicode-ident.workspace = true

0 commit comments

Comments
 (0)