Skip to content

Commit

Permalink
Add rust-toolchain.toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
sisshiki1969 committed Jan 21, 2025
1 parent c1644be commit d087697
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 104 deletions.
130 changes: 32 additions & 98 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions monoruby/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ perf = []
emit-cfg = ["dump-bc"]

[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
clap = { version = "4.5.27", features = ["derive"] }
rustyline = "15.0.0"
paste = "1.0.15"
monoasm_macro = { git = "https://github.com/sisshiki1969/monoasm.git" }
Expand All @@ -42,7 +42,7 @@ ruruby-parse = { git = "https://github.com/sisshiki1969/ruruby-parse.git" }
monoruby-attr = { path = "../monoruby_attr" }
num = "0.4.3"
fxhash = "0.2.1"
tempfile = "3.14.0"
tempfile = "3.15.0"
dtoa = "1.0.9"
chrono = "0.4.39"
smallvec = { git = "https://github.com/sisshiki1969/rust-smallvec.git", features = [
Expand All @@ -51,17 +51,17 @@ smallvec = { git = "https://github.com/sisshiki1969/rust-smallvec.git", features
escape_string = "0.1.2"
hex = "0.4.3"
rand = "0.8.5"
indexmap = "2.7.0"
indexmap = "2.7.1"
regex = "1.11.1"
fancy-regex = "0.14.0"
libc = "0.2.168"
libc = "0.2.169"
getrandom = "0.2.15"
sfmt = "0.7.0"
bitvec = "1.0.1"
ansi_term = "0.12.1"
dirs = "5.0.1"
dirs = "6.0.0"
globset = "0.4.14"
html-escape = "0.2.13"

[build-dependencies]
dirs = "5.0.1"
dirs = "6.0.0"
1 change: 1 addition & 0 deletions monoruby/src/compiler/jitgen/trace_ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ pub(crate) enum TraceIr {
},
ICmpBr {
kind: ruruby_parse::CmpKind,
#[allow(dead_code)]
dst: Option<SlotId>,
mode: OpMode,
dest: BasicBlockId,
Expand Down
2 changes: 2 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[toolchain]
channel = "nightly-2025-01-05"

0 comments on commit d087697

Please sign in to comment.