Skip to content

Commit 954be65

Browse files
committed
chore: add chip-wasm too the project workspace
Prior it was in a seperate workspace due to rust-analyzer/cargo issues when mixing wasm and non-wasm crates. This no longer seems to be an issue, so we can get rid of the extra fluff!
1 parent 41f2f10 commit 954be65

File tree

23 files changed

+166
-1527
lines changed

23 files changed

+166
-1527
lines changed

.vscode/settings.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
{
2-
"rust-analyzer.linkedProjects": [
3-
"Cargo.toml",
4-
"crates/chip-wasm/Cargo.toml"
5-
],
62
"FSharp.showExplorerOnStartup": false,
73
"tailwindCSS.experimental.classRegex": [
84
"class: \"(.*)\""

Cargo.lock

Lines changed: 129 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ members = [
44
"crates/ce-core",
55
"crates/ce-shell",
66
"crates/checkr",
7-
"crates/chip",
87
"crates/chip-cli",
8+
"crates/chip-wasm",
9+
"crates/chip",
910
"crates/driver",
1011
"crates/envs/*",
1112
"crates/gcl",
@@ -18,6 +19,7 @@ members = [
1819

1920
[workspace.package]
2021
version = "0.2.8"
22+
edition = "2021"
2123
repository = "https://github.com/team-checkr/checkr/"
2224
authors = [
2325
"Oliver Bøving <[email protected]>",

crates/ce-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ce-core"
3-
edition = "2021"
3+
edition.workspace = true
44
version.workspace = true
55
repository.workspace = true
66
authors.workspace = true

crates/ce-shell/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ce-shell"
3-
edition = "2021"
3+
edition.workspace = true
44
version.workspace = true
55
repository.workspace = true
66
authors.workspace = true

crates/checkr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "checkr"
3-
edition = "2021"
3+
edition.workspace = true
44
version.workspace = true
55
license.workspace = true
66
repository.workspace = true

crates/chip-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chip-cli"
3-
edition = "2021"
3+
edition.workspace = true
44
version.workspace = true
55
repository.workspace = true
66
authors.workspace = true

0 commit comments

Comments
 (0)