Skip to content

Commit e947648

Browse files
committed
Start using invoke
Please do not review. I need to work on this project alone.
1 parent 6339d98 commit e947648

19 files changed

+1077
-625
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[net]
2+
git-fetch-with-cli = true

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ cranelift-native = { version = "0.111.0" }
1515
cranelift-jit = { version = "0.111.0", optional = true }
1616
cranelift-object = { version = "0.111.0" }
1717
target-lexicon = "0.12.0"
18-
gimli = { version = "0.28", default-features = false, features = ["write"]}
18+
gimli = { version = "0.27", default-features = false, features = ["write"]}
1919
object = { version = "0.36", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2020

21+
eh_frame_experiments = { git = "ssh://[email protected]/bjorn3/eh_frame_experiments.git" }
2122
indexmap = "2.0.0"
2223
libloading = { version = "0.8.0", optional = true }
2324
smallvec = "1.8.1"
25+
pretty_env_logger = "0.4.0"
2426

2527
[patch.crates-io]
2628
# Uncomment to use local checkout of cranelift
@@ -31,7 +33,10 @@ cranelift-native = { path = "../wasmtime/cranelift/native" }
3133
cranelift-jit = { path = "../wasmtime/cranelift/jit" }
3234
cranelift-object = { path = "../wasmtime/cranelift/object" }
3335

34-
#gimli = { path = "../" }
36+
gimli = { git = "https://github.com/bjorn3/gimli.git", branch = "bsc-unwinding-fix-lsda-encoding" }
37+
38+
#[patch."ssh://[email protected]/bjorn3/eh_frame_experiments.git"]
39+
#eh_frame_experiments = { path = "./eh_frame_experiments" }
3540

3641
[features]
3742
# Enable features not ready to be enabled when compiling as part of rustc

0 commit comments

Comments
 (0)