Skip to content

Commit

Permalink
chore: Use night 1.83.0
Browse files Browse the repository at this point in the history
There are compiler errors in the new 1.84.0 with regex
  • Loading branch information
wormtql committed Oct 19, 2024
1 parent 0a31fff commit e5bf174
Show file tree
Hide file tree
Showing 6 changed files with 168 additions and 156 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
toolchain: 1.83.0
target: wasm32-unknown-unknown
- name: Setup wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
Expand Down
140 changes: 73 additions & 67 deletions mona_core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions mona_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ strip = true

[dependencies]
mona_derive = { path = "../mona_derive" }
wasm-bindgen = { version = "0.2.63", features = ["serde-serialize"] }
lazy_static = "1.4.0"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
lazy_static = "1.5"
rand = "0.8.4"
serde = { version = "1.0.133", features = ["derive"] }
serde_json = "1.0.78"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
console_error_panic_hook = { version = "0.1.7", optional = true }
web-sys = { version = "0.3.55", features = ["console"] }
web-sys = { version = "0.3", features = ["console"] }
getrandom = { version = "0.2", features = ["js"] }
num = "0.4"
num-derive = "0.4.2"
num-derive = "0.4"
num-traits = "0.2"
smallvec = { version = "1.8.0", features = ["serde"] }
askama = "0.12"
askama_escape = "0.10.2"
strum = { version = "0.26" }
strum_macros = "0.26"
rustc-hash = "1.1.0"
pest = "2.1.3"
pest_derive = "2.1.0"
pest = "2.7"
pest_derive = "2.7"
#mona_dsl = { path = "../mona_dsl" }
Loading

0 comments on commit e5bf174

Please sign in to comment.