Skip to content

Commit

Permalink
add license to crate-manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed Sep 10, 2023
1 parent 0627a45 commit a68e4e4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion api/color/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Alex Koz <[email protected]>"]
description = "High-level color API built on-top of Playdate API"
homepage = "https://github.com/boozook/playdate"
Expand Down Expand Up @@ -32,7 +33,7 @@ bindings-documentation = ["sys/bindings-documentation"]


[dependencies.sys]
path = "../sys"
version = "0.1"
path = "../sys"
package = "playdate-sys"
default-features = false
2 changes: 1 addition & 1 deletion api/color/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#![feature(const_trait_impl)]
#![feature(impl_trait_in_assoc_type)]

pub extern crate sys;
extern crate sys;
use sys::ffi::LCDColor;
use sys::ffi::LCDPattern;
use sys::ffi::LCDSolidColor;
Expand Down
1 change: 1 addition & 0 deletions api/ctrl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ version = "0.1.0"
edition = "2021"

readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Alex Koz <[email protected]>"]
description = "High-level controls API built on-top of Playdate API"
homepage = "https://github.com/boozook/playdate"
Expand Down
1 change: 1 addition & 0 deletions api/fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Alex Koz <[email protected]>"]
description = "High-level file-system API built on-top of Playdate API"
homepage = "https://github.com/boozook/playdate"
Expand Down
1 change: 1 addition & 0 deletions api/gfx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Alex Koz <[email protected]>"]
description = "High-level graphics API built on-top of Playdate API"
homepage = "https://github.com/boozook/playdate"
Expand Down
1 change: 1 addition & 0 deletions api/menu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Alex Koz <[email protected]>"]
description = "High-level system menu API built on-top of Playdate API"
homepage = "https://github.com/boozook/playdate"
Expand Down
1 change: 1 addition & 0 deletions api/sound/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Alex Koz <[email protected]>"]
description = "High-level sound API built on-top of Playdate API"
homepage = "https://github.com/boozook/playdate"
Expand Down
1 change: 1 addition & 0 deletions api/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ build = "src/build.rs"
include = ["gen/*.rs"]

readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Alex Koz <[email protected]>"]
description = "Low-level Playdate API bindings"
keywords = ["playdate", "bindings", "ffi", "gamedev"]
Expand Down

0 comments on commit a68e4e4

Please sign in to comment.