Skip to content
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #118 from a-isaiahharvey/add-doc-rs-metadata
Browse files Browse the repository at this point in the history
Add Doc.rs Metadata
  • Loading branch information
martial-plains authored Oct 26, 2022
2 parents b2b6a20 + 55a48e0 commit 4d3a0ee
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
[package]
name = "rust-macios"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
authors = ["Allister Isaiah Harvey <[email protected]>"]
description = "Apple Frameworks for Rust"
license = "MIT"
keywords = ["objective-c", "macos", "ios", "cocoa"]
categories = ["api-bindings", "development-tools::ffi", "os::macos-apis"]
repository = "https://github.com/a-isaiahharvey/rust-macios"

[workspace]
members = ["src/appkit/proc-macros", "src/objective_c_runtime/proc-macros"]
documentation = "https://docs.rs/crate/rust-macios/"

[package.metadata.docs.rs]
default-target = "aarch64-apple-darwin"
targets = [
# MacOS
"x86_64-apple-darwin",
"aarch64-apple-darwin",
# iOS
"aarch64-apple-ios",
"x86_64-apple-ios",
]

[profile.release]
opt-level = 0
Expand Down Expand Up @@ -72,6 +83,9 @@ bitflags = "1.3.2"
[dev-dependencies]
test-case = "2.1.0"

[workspace]
members = ["src/appkit/proc-macros", "src/objective_c_runtime/proc-macros"]

[[example]]
name = "app_delegate"
path = "examples/appkit/app_delegate.rs"
Expand Down

0 comments on commit 4d3a0ee

Please sign in to comment.