Skip to content

Commit a021c4c

Browse files
authored
Merge pull request #1 from madsmtm/workspace
Move crates into a cargo workspace
2 parents c8696b0 + 8fc1393 commit a021c4c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+2698
-34
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
doc/
21
target/
32
Cargo.lock
43

Cargo.toml

Lines changed: 8 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,8 @@
1-
[package]
2-
name = "objc"
3-
version = "0.2.7"
4-
authors = ["Steven Sheldon"]
5-
edition = "2018"
6-
7-
description = "Objective-C Runtime bindings and wrapper for Rust."
8-
keywords = ["objective-c", "osx", "ios", "cocoa", "uikit"]
9-
readme = "README.md"
10-
repository = "http://github.com/SSheldon/rust-objc"
11-
documentation = "http://ssheldon.github.io/rust-objc/objc/"
12-
license = "MIT"
13-
14-
exclude = [
15-
".gitignore",
16-
".travis.yml",
17-
"doc.sh",
18-
"travis_install.sh",
19-
"travis_test.sh",
20-
"tests-ios/**",
21-
]
22-
23-
[features]
24-
exception = ["objc_exception"]
25-
verify_message = []
26-
27-
[dependencies]
28-
malloc_buf = "1.0"
29-
objc-encode = "1.0"
30-
31-
[dependencies.objc_exception]
32-
version = "0.1"
33-
optional = true
1+
[workspace]
2+
members = [
3+
"objc",
4+
"objc_encode",
5+
"objc_exception",
6+
"objc_foundation",
7+
"objc_id",
8+
]
File renamed without changes.
File renamed without changes.

objc/Cargo.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[package]
2+
name = "objc"
3+
version = "0.2.7"
4+
authors = ["Steven Sheldon"]
5+
edition = "2018"
6+
7+
description = "Objective-C Runtime bindings and wrapper for Rust."
8+
keywords = ["objective-c", "osx", "ios", "cocoa", "uikit"]
9+
readme = "README.md"
10+
repository = "http://github.com/SSheldon/rust-objc"
11+
documentation = "http://ssheldon.github.io/rust-objc/objc/"
12+
license = "MIT"
13+
14+
exclude = [
15+
".gitignore",
16+
".travis.yml",
17+
"doc.sh",
18+
"travis_install.sh",
19+
"travis_test.sh",
20+
"tests-ios/**",
21+
]
22+
23+
[features]
24+
exception = ["objc_exception"]
25+
verify_message = []
26+
27+
[dependencies]
28+
malloc_buf = "1.0"
29+
objc-encode = { path = "../objc_encode", version = "1.0" }
30+
objc_exception = { path = "../objc_exception", version = "0.1", optional = true }
File renamed without changes.

doc.sh renamed to objc/doc.sh

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)