Skip to content

Commit 2ac205a

Browse files
committed
Updated test_utils to gcc 0.3.
1 parent 580ff1d commit 2ac205a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

test_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ name = "objc_test_utils"
1515
path = "lib.rs"
1616

1717
[build-dependencies]
18-
gcc = "0.1"
18+
gcc = "0.3"

test_utils/build.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
extern crate gcc;
22

3-
use std::default::Default;
4-
53
fn main() {
6-
let config = Default::default();
7-
gcc::compile_library("libblock_utils.a", &config, &["block_utils.m"]);
4+
gcc::compile_library("libblock_utils.a", &["block_utils.m"]);
85
}

0 commit comments

Comments
 (0)