Skip to content

Commit

Permalink
Rename test-macros and config crates (#677)
Browse files Browse the repository at this point in the history
This commit is a minor clean-up to rename the `test-macros` and `config`
crates directories so that they adhere to the naming convention of the rest of the
crates. This is simply a mechanical change.

Additionally, the `publish = false` property is added to crates that are
not mean to be published.
  • Loading branch information
saulecabrera authored Jul 2, 2024
1 parent 003e42e commit 442c01c
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ members = [
"crates/apis",
"crates/core",
"crates/cli",
"crates/javy-test-macros",
"crates/javy-config",
"crates/test-macros",
"crates/config",
]
resolver = "2"

Expand All @@ -25,7 +25,7 @@ wasi-common = "19"
anyhow = "1.0"
once_cell = "1.19"
bitflags = "2.5.0"
javy-config = { path = "crates/javy-config" }
javy-config = { path = "crates/config" }
javy = { path = "crates/javy", version = "3.0.0" }

[profile.release]
Expand Down
1 change: 1 addition & 0 deletions crates/javy-config/Cargo.toml → crates/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/javy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fastrand = "2.1.0"
simd-json = { version = "0.13.10", optional = true, default-features = false, features = ["big-int-as-float", "serde_impl"] }

[dev-dependencies]
javy-test-macros = { path = "../javy-test-macros/" }
javy-test-macros = { path = "../test-macros/" }

[features]
export_alloc_fns = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
publish = false

[lib]
proc-macro = true
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 442c01c

Please sign in to comment.