Skip to content

Commit b73e930

Browse files
committed
Update dependencies
1 parent 5797416 commit b73e930

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build = "build/main.rs"
66

77
[dependencies]
88
bitvec = "1.0.1"
9-
inkwell = { version = "0.1.1", features = ["llvm15-0-no-llvm-linking"] }
9+
inkwell = { version = "0.2.0", features = ["llvm15-0-no-llvm-linking"] }
1010
llvm-sys = { version = "150", features = ["no-llvm-linking"] }
1111
unicode-ident = "1.0.8"
1212
walkdir = "2"
@@ -15,9 +15,9 @@ serde = { version = "1.0", features = ["derive"] }
1515
semver = { version = "1.0", features = ["serde"] }
1616
either = { version = "1.8.1", features = ["serde"] }
1717
glob = "0.3.1"
18-
flate2 = "1.0.25"
19-
git2 = "0.17.0"
20-
zip-extract = "0.1.2"
18+
flate2 = "1.0.26"
19+
git2 = "0.17.1"
20+
zip-extract = "0.1"
2121
tar = "0.4.38"
2222
try-lazy-init = "0.0.2"
2323
lazy_static = "1.4.0"
@@ -31,12 +31,12 @@ object = { version = "0.31.0", features = ["write"] }
3131
anyhow = "1.0.70"
3232
anyhow-std = "0.1.3"
3333
thiserror = "1.0.40"
34-
cc = "1.0.79"
34+
cc = "1.0"
3535

3636
[build-dependencies]
3737
lazy_static = "1.0"
3838
regex = "1.0"
39-
semver = "1.0.7"
39+
semver = "1.0"
4040

4141
# features passed to llvm-sys
4242
[features]

build/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ fn git_info() -> Option<()> {
1313
}
1414
fn main() {
1515
println!("cargo:rerun-if-changed=.git");
16+
println!("cargo:rustc-env=HOST={}", std::env::var("TARGET").unwrap());
1617
git_info();
1718
llvm::entry();
1819
println!("cargo:rustc-env=LLVM_VERSION={}", llvm::llvm_config("--version"));
19-
println!("cargo:rustc-env=HOST={}", std::env::var("TARGET").unwrap());
2020
}

0 commit comments

Comments
 (0)