Skip to content

Commit

Permalink
chore: Use workspace reqwest and bump object crate
Browse files Browse the repository at this point in the history
  • Loading branch information
xdoardo committed Oct 17, 2024
1 parent c4dbf78 commit c73b8f1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
11 changes: 1 addition & 10 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -253,15 +253,15 @@ clap = { version = "4.4.0", default-features = false, features = [
] }

[target.'cfg(not(any(target_arch = "riscv64", target_arch = "loongarch64")))'.dependencies]
reqwest = { version = "^0.11", default-features = false, features = [
reqwest = { workspace = true, default-features = false, features = [
"rustls-tls",
"json",
"multipart",
"gzip",
] }

[target.'cfg(any(target_arch = "riscv64", target_arch = "loongarch64"))'.dependencies]
reqwest = { version = "^0.11", default-features = false, features = [
reqwest = { workspace = true, default-features = false, features = [
"native-tls",
"json",
"multipart",
Expand Down
13 changes: 10 additions & 3 deletions lib/compiler-llvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ version.workspace = true

[dependencies]
wasmer-compiler = { path = "../compiler", version = "=4.4.0", features = [
"translator", "compiler"
"translator",
"compiler",
] }
wasmer-vm = { path = "../vm", version = "=4.4.0" }
wasmer-types = { path = "../types", version = "=4.4.0" }
target-lexicon = { version = "0.12.2", default-features = false }
smallvec = "1.6"
object = { version = "0.28.3", default-features = false, features = ["read"] }
object = { version = "0.30.3", default-features = false, features = ["read"] }
libc.workspace = true
byteorder = "1"
itertools = "0.10"
Expand All @@ -31,7 +32,13 @@ rayon = "1.5"
package = "inkwell"
version = "0.5.0"
default-features = false
features = ["llvm18-0-prefer-static", "target-x86", "target-aarch64", "target-riscv"]
features = [
"llvm18-0-prefer-static",
"target-x86",
"target-aarch64",
"target-riscv",
"target-loongarch",
]

[build-dependencies]
cc = "1.0"
Expand Down

0 comments on commit c73b8f1

Please sign in to comment.