File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build = "build/main.rs"
6
6
7
7
[dependencies ]
8
8
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" ] }
10
10
llvm-sys = { version = " 150" , features = [" no-llvm-linking" ] }
11
11
unicode-ident = " 1.0.8"
12
12
walkdir = " 2"
@@ -15,9 +15,9 @@ serde = { version = "1.0", features = ["derive"] }
15
15
semver = { version = " 1.0" , features = [" serde" ] }
16
16
either = { version = " 1.8.1" , features = [" serde" ] }
17
17
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"
21
21
tar = " 0.4.38"
22
22
try-lazy-init = " 0.0.2"
23
23
lazy_static = " 1.4.0"
@@ -31,12 +31,12 @@ object = { version = "0.31.0", features = ["write"] }
31
31
anyhow = " 1.0.70"
32
32
anyhow-std = " 0.1.3"
33
33
thiserror = " 1.0.40"
34
- cc = " 1.0.79 "
34
+ cc = " 1.0"
35
35
36
36
[build-dependencies ]
37
37
lazy_static = " 1.0"
38
38
regex = " 1.0"
39
- semver = " 1.0.7 "
39
+ semver = " 1.0"
40
40
41
41
# features passed to llvm-sys
42
42
[features ]
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ fn git_info() -> Option<()> {
13
13
}
14
14
fn main ( ) {
15
15
println ! ( "cargo:rerun-if-changed=.git" ) ;
16
+ println ! ( "cargo:rustc-env=HOST={}" , std:: env:: var( "TARGET" ) . unwrap( ) ) ;
16
17
git_info ( ) ;
17
18
llvm:: entry ( ) ;
18
19
println ! ( "cargo:rustc-env=LLVM_VERSION={}" , llvm:: llvm_config( "--version" ) ) ;
19
- println ! ( "cargo:rustc-env=HOST={}" , std:: env:: var( "TARGET" ) . unwrap( ) ) ;
20
20
}
You can’t perform that action at this time.
0 commit comments