Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,061 changes: 802 additions & 259 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,12 @@ dioxus-cli-opt = { path = "packages/cli-opt", version = "0.7.1" }
dioxus-cli-telemetry = { path = "packages/cli-telemetry", version = "0.7.1" }
dioxus-cli-config = { path = "packages/cli-config", version = "0.7.1" }

# const-serializea
const-serialize = { path = "packages/const-serialize", version = "0.7.1" }
const-serialize-macro = { path = "packages/const-serialize-macro", version = "0.7.1" }
# const-serialize
const-serialize = { path = "packages/const-serialize", version = "0.8.0" }
const-serialize-macro = { path = "packages/const-serialize-macro", version = "0.8.0" }

# The version of const-serialize published with 0.7.0 and 0.7.1 that the CLI should still support
const-serialize-07 = { package = "const-serialize", version = "0.7.1" }

# subsecond
subsecond-types = { path = "packages/subsecond/subsecond-types", version = "0.7.1" }
Expand All @@ -206,6 +209,9 @@ manganis = { path = "packages/manganis/manganis", version = "0.7.1" }
manganis-core = { path = "packages/manganis/manganis-core", version = "0.7.1" }
manganis-macro = { path = "packages/manganis/manganis-macro", version = "0.7.1" }

# The version of assets published with 0.7.0 and 0.7.1 that the CLI should still support
manganis-core-07 = { package = "manganis-core", version = "0.7.1" }

# wasm-split
wasm-splitter = { path = "packages/wasm-split/wasm-split", version = "0.7.1" }
wasm-split-macro = { path = "packages/wasm-split/wasm-split-macro", version = "0.7.1" }
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ brotli = "8.0.1"
ignore = "0.4.23"
env_logger = { workspace = true }
const-serialize = { workspace = true, features = ["serde"] }
const-serialize-07 = { workspace = true, features = ["serde"] }

tracing-subscriber = { version = "0.3.19", features = [
"std",
Expand All @@ -122,6 +123,7 @@ log = { version = "0.4", features = ["max_level_off", "release_max_level_off"] }
tempfile = "3.19.1"
manganis = { workspace = true }
manganis-core = { workspace = true }
manganis-core-07 = { workspace = true }
target-lexicon = { version = "0.13.2", features = ["serde", "serde_support"] }
wasm-encoder = "0.235.0"

Expand Down
Loading
Loading