-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
[package] | ||
name = "ndk-glue" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["David Craven <[email protected]>"] | ||
edition = "2018" | ||
description = "Startup code for android binaries" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["android", "ndk"] | ||
readme = "README.md" | ||
documentation = "https://docs.rs/ndk-glue" | ||
homepage = "https://github.com/rust-windowing/android-ndk-rs" | ||
repository = "https://github.com/rust-windowing/android-ndk-rs" | ||
|
||
[dependencies] | ||
android_log-sys = "0.1.2" | ||
ndk = { path = "../ndk", version = "0.1" } | ||
ndk-sys = { path = "../ndk-sys", version = "0.1" } | ||
ndk-macro = { path = "../ndk-macro", version = "0.1" } | ||
ndk = { path = "../ndk", version = "0.1.1" } | ||
ndk-sys = { path = "../ndk-sys", version = "0.1.1" } | ||
ndk-macro = { path = "../ndk-macro", version = "0.1.0" } | ||
lazy_static = "1.4.0" | ||
libc = "0.2.66" | ||
log = "0.4.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,11 @@ authors = ["K. <[email protected]>"] | |
edition = "2018" | ||
description = "Helper macros for android ndk" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["android", "ndk"] | ||
readme = "README.md" | ||
documentation = "https://docs.rs/ndk-macro" | ||
homepage = "https://github.com/rust-windowing/android-ndk-rs" | ||
repository = "https://github.com/rust-windowing/android-ndk-rs" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ndk-sys" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Mark Barbone <[email protected]>"] | ||
edition = "2018" | ||
description = "FFI bindings for the Android NDK" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ndk" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Mark Barbone <[email protected]>"] | ||
edition = "2018" | ||
description = "Safe Rust bindings to the Android NDK" | ||
|
@@ -43,4 +43,4 @@ optional = true | |
[dependencies.ffi] | ||
package = "ndk-sys" | ||
path = "../ndk-sys" | ||
version = "0.1" | ||
version = "0.1.1" |