Skip to content

Commit

Permalink
Add tags to cargo toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
Javier-varez committed May 12, 2024
1 parent 8c90d8d commit d46aa5e
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 21 deletions.
11 changes: 8 additions & 3 deletions cartridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
name = "cartridge"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Game Boy cartridge emulation with support for multiple mappers"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[dependencies]
sm83 = { path = "../sm83", version = "0.1" }
11 changes: 8 additions & 3 deletions ppu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
name = "ppu"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Game Boy PPU emulation"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[dependencies]
sm83 = { path = "../sm83", version = "0.1.0" }
Expand Down
11 changes: 8 additions & 3 deletions rb-disasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
name = "rb-disasm"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Game Boy Disassembler"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[dependencies]
rusty-boy = { path = "../rusty-boy" }
Expand Down
10 changes: 8 additions & 2 deletions rusty-boy-sdl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
name = "rusty-boy-sdl"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Game Boy Emulator for desktop computers that uses SDL2 for graphics and events"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cartridge = { path = "../cartridge" }
Expand Down
11 changes: 8 additions & 3 deletions rusty-boy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
name = "rusty-boy"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Game Boy emulator"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[dependencies]
sm83 = { path = "../sm83", version = "0.1.0" }
Expand Down
9 changes: 8 additions & 1 deletion rusty-date/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
name = "rusty-date"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Game Boy emulator for Playdate"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[package.metadata.cargo-xbuild]
memcpy = false
Expand Down
10 changes: 8 additions & 2 deletions sm83/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
name = "sm83"
version = "0.1.0"
edition = "2021"
description = "An sm83 core emulator for GameBoy"
license = "MIT AND Apache-2.0"
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "SM83 CPU emulator, for Game Boy emulators"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[dependencies]
sm83_decoder_macros = { path = "../sm83_decoder_macros" }
Expand Down
9 changes: 8 additions & 1 deletion sm83_decoder_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
name = "sm83_decoder_macros"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Macros for the SM83 Game Boy CPU emulator"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[lib]
proc-macro = true
Expand Down
11 changes: 8 additions & 3 deletions timer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
name = "timer"
version = "0.1.0"
edition = "2021"
license = "MIT AND Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT OR Apache-2.0"
authors = ["Javier Alvarez <[email protected]>"]
description = "Emulator for the timer in a Game Boy"
homepage = "https://github.com/Javier-varez/rusty-boy"
repository = "https://github.com/Javier-varez/rusty-boy"
categories = ["embedded", "gaming"]
keywords = ["embedded", "gameboy", "playdate"]
readme = "../README.md"

[dependencies]
sm83 = { path = "../sm83", version = "0.1.0" }
Expand Down

0 comments on commit d46aa5e

Please sign in to comment.