Skip to content

Commit 8a3b7cc

Browse files
committed
TMP
1 parent 1b2fde9 commit 8a3b7cc

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

block-sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "block-sys"
3-
version = "0.0.3" # Remember to update html_root_url in lib.rs
3+
version = "0.0.5" # Remember to update html_root_url in lib.rs
44
authors = ["Mads Marquart <[email protected]>"]
55
edition = "2021"
66

@@ -19,7 +19,7 @@ readme = "README.md"
1919

2020
# Downstream users can customize the linking!
2121
# See https://doc.rust-lang.org/cargo/reference/build-scripts.html#overriding-build-scripts
22-
links = "block_0_0"
22+
links = "block_0_0_tmp"
2323
build = "build.rs"
2424

2525
[features]
@@ -47,7 +47,7 @@ unstable-winobjc = ["objc-sys/unstable-winobjc", "gnustep-1-8"]
4747
unstable-objfw = []
4848

4949
[dependencies]
50-
objc-sys = { path = "../objc-sys", version = "=0.2.0-alpha.1", default-features = false, optional = true }
50+
objc-sys = { git = "https://github.com/madsmtm/objc2", optional = true, package = "objc-sys", branch = "tweak-docs-targets", default-features = false }
5151

5252
[package.metadata.docs.rs]
5353
default-target = "x86_64-apple-darwin"

block2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "block2"
33
# Remember to update html_root_url in lib.rs and README.md
4-
version = "0.2.0-alpha.3"
4+
version = "0.2.0-alpha.5"
55
authors = ["Steven Sheldon", "Mads Marquart <[email protected]>"]
66
edition = "2021"
77

@@ -30,8 +30,8 @@ gnustep-2-0 = ["gnustep-1-9", "block-sys/gnustep-2-0"]
3030
gnustep-2-1 = ["gnustep-2-0", "block-sys/gnustep-2-1"]
3131

3232
[dependencies]
33-
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-beta.2", default-features = false }
34-
block-sys = { path = "../block-sys", version = "0.0.3", default-features = false }
33+
objc2-encode = { git = "https://github.com/madsmtm/objc2", package = "objc2-encode", branch = "tweak-docs-targets", default-features = false }
34+
block-sys = { git = "https://github.com/madsmtm/objc2", package = "block-sys", branch = "tweak-docs-targets", default-features = false }
3535

3636
[package.metadata.docs.rs]
3737
default-target = "x86_64-apple-darwin"

objc-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "objc-sys"
33
# Remember to update `html_root_url` in lib.rs, the `links` key, and the
44
# exception function name.
5-
version = "0.2.0-alpha.1"
5+
version = "0.2.0-alpha.3"
66
authors = ["Mads Marquart <[email protected]>"]
77
edition = "2021"
88

@@ -21,7 +21,7 @@ readme = "README.md"
2121

2222
# Downstream users can customize the linking to libobjc!
2323
# See https://doc.rust-lang.org/cargo/reference/build-scripts.html#overriding-build-scripts
24-
links = "objc_0_2"
24+
links = "objc_0_2_tmp"
2525
build = "build.rs"
2626

2727
[features]

objc2-foundation/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ gnustep-2-0 = ["gnustep-1-9", "objc2/gnustep-2-0", "block2?/gnustep-2-0"]
3030
gnustep-2-1 = ["gnustep-2-0", "objc2/gnustep-2-1", "block2?/gnustep-2-1"]
3131

3232
[dependencies]
33-
block2 = { path = "../block2", version = "=0.2.0-alpha.3", default-features = false, optional = true }
34-
objc2 = { path = "../objc2", version = "=0.3.0-alpha.6", default-features = false }
33+
block2 = { git = "https://github.com/madsmtm/objc2", package = "block2", branch = "tweak-docs-targets", optional = true, default-features = false }
34+
objc2 = { git = "https://github.com/madsmtm/objc2", package = "objc2", branch = "tweak-docs-targets", default-features = false }
3535

3636
[package.metadata.docs.rs]
3737
default-target = "x86_64-apple-darwin"

objc2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "objc2"
3-
version = "0.3.0-alpha.6" # Remember to update html_root_url in lib.rs
3+
version = "0.3.0-alpha.7" # Remember to update html_root_url in lib.rs
44
authors = ["Steven Sheldon", "Mads Marquart <[email protected]>"]
55
edition = "2021"
66

@@ -50,8 +50,8 @@ gnustep-2-1 = ["gnustep-2-0", "objc-sys/gnustep-2-1"]
5050

5151
[dependencies]
5252
malloc_buf = { version = "1.0", optional = true }
53-
objc-sys = { path = "../objc-sys", version = "=0.2.0-alpha.1", default-features = false }
54-
objc2-encode = { path = "../objc2-encode", version = "=2.0.0-beta.2", default-features = false }
53+
objc-sys = { git = "https://github.com/madsmtm/objc2", package = "objc-sys", branch = "tweak-docs-targets", default-features = false }
54+
objc2-encode = { git = "https://github.com/madsmtm/objc2", package = "objc2-encode", branch = "tweak-docs-targets", default-features = false }
5555

5656
[dev-dependencies]
5757
iai = { version = "0.1", git = "https://github.com/madsmtm/iai", branch = "callgrind" }

tests/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fn main() {
88
builder.file("extern/block_utils.c");
99
println!("cargo:rerun-if-changed=extern/block_utils.c");
1010

11-
for flag in env::var("DEP_BLOCK_0_0_CC_ARGS").unwrap().split(' ') {
11+
for flag in env::var("DEP_BLOCK_0_0_TMP_CC_ARGS").unwrap().split(' ') {
1212
builder.flag(flag);
1313
}
1414

@@ -21,7 +21,7 @@ fn main() {
2121
println!("cargo:rerun-if-changed=extern/encode_utils.m");
2222
println!("cargo:rerun-if-changed=extern/test_object.m");
2323

24-
for flag in env::var("DEP_OBJC_0_2_CC_ARGS").unwrap().split(' ') {
24+
for flag in env::var("DEP_OBJC_0_2_TMP_CC_ARGS").unwrap().split(' ') {
2525
builder.flag(flag);
2626
}
2727

0 commit comments

Comments
 (0)