Skip to content

Commit e7a4323

Browse files
committed
Remove explicit branch="main" form Cargo.toml
1 parent ab4da11 commit e7a4323

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ crate-type = ["dylib"]
99

1010
[dependencies]
1111
# These have to be in sync with each other
12-
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", features = ["unwind", "all-arch"] }
13-
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
14-
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
15-
cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
16-
cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", optional = true }
17-
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
12+
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", features = ["unwind", "all-arch"] }
13+
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git" }
14+
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git" }
15+
cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git" }
16+
cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", optional = true }
17+
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git" }
1818
target-lexicon = "0.12.0"
1919
gimli = { version = "0.24.0", default-features = false, features = ["write"]}
2020
object = { version = "0.25.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }

0 commit comments

Comments
 (0)