File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " llvm_build_utils"
3
- version = " 0.2 .0"
3
+ version = " 0.3 .0"
4
4
authors = [" Simonas Kazlauskas <git@kazlauskas.me>" ]
5
5
build = " build.rs"
6
6
description = """ Ever wanted to build “native” assembly stuff in your cargo build scripts…
7
7
something gcc crate cannot quite handle yet? Welcome to llvm_build_utils which provides a
8
8
convenient API to pack your .ll or .bc files into a ready to use archive full of machine code! It
9
9
doesn’t even need an installation of LLVM*!"""
10
- documentation = " https://crates.fyi/crates/llvm_build_utils/0.2 .0"
10
+ documentation = " https://crates.fyi/crates/llvm_build_utils/0.3 .0"
11
11
repository = " https://github.com/nagisa/llvm_build_utils.rs"
12
12
keywords = [" llvm" , " asm" , " ll" , " bc" ]
13
13
license = " ISC/Apache-2.0"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ to your `Cargo.toml` via:
27
27
build = " build.rs"
28
28
29
29
[build-dependencies ]
30
- llvm_build_utils = " 0.2 "
30
+ llvm_build_utils = " 0.3 "
31
31
```
32
32
33
33
Then write your ` build.rs ` like this:
Original file line number Diff line number Diff line change 20
20
//! build = "build.rs"
21
21
//!
22
22
//! [build-dependencies]
23
- //! llvm_build_utils = "0.1 "
23
+ //! llvm_build_utils = "0.3 "
24
24
//! ```
25
25
//!
26
26
//! Then write your `build.rs` like this:
You can’t perform that action at this time.
0 commit comments