Skip to content

Commit

Permalink
Added some metadata in the crates and license
Browse files Browse the repository at this point in the history
Signed-off-by: Amjad Alsharafi <[email protected]>
  • Loading branch information
Amjad50 committed Oct 19, 2024
1 parent 5978b3e commit da3bb96
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ codegen-units = 16
debug = false
overflow-checks = false
lto = false

8 changes: 6 additions & 2 deletions plastic_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name = "plastic_core"
version = "0.3.0"
authors = ["Amjad Alsharafi <[email protected]>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "An accurate NES emulator. The backend emulation for plastic and plastic-tui"
readme = "../README.md"
repository = "https://github.com/Amjad50/plastic"
license = "MIT"
keywords = ["nes", "nintendo", "emulator"]
categories = ["emulators"]

[dependencies]
bitflags = "^1.2.1"
Expand Down
1 change: 1 addition & 0 deletions plastic_core/LICENSE
9 changes: 7 additions & 2 deletions plastic_tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name = "plastic_tui"
version = "0.3.0"
authors = ["Amjad Alsharafi <[email protected]>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "An accurate NES emulator. Front-end terminal interface (TUI) for plastic-core"
readme = "../README.md"
repository = "https://github.com/Amjad50/plastic"
license = "MIT"
keywords = ["nes", "nintendo", "tui", "emulator"]
categories = ["emulators"]

[dependencies]
plastic_core = { path = "../plastic_core", version = "0.3.0" }
Expand All @@ -13,3 +17,4 @@ crossterm = "0.28"
gilrs = "0.11"
dynwave = "0.1.0"
ratatui = "0.28.1"

1 change: 1 addition & 0 deletions plastic_tui/LICENSE
9 changes: 9 additions & 0 deletions plastic_ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
[package]
name = "plastic"
version = "0.3.0"
authors = ["Amjad Alsharafi <[email protected]>"]
edition = "2021"
description = "An accurate NES emulator. Front-end for plastic-core"
readme = "../README.md"
repository = "https://github.com/Amjad50/plastic"
license = "MIT"
keywords = ["nes", "nintendo", "emulator"]
categories = ["emulators"]

[dependencies]
plastic_core = { path = "../plastic_core", version = "0.3.0" }

egui = "0.29"
egui-winit = "0.29"
directories = "5.0"
eframe = "0.29"
rfd = "0.15"
dynwave = "0.1"

1 change: 1 addition & 0 deletions plastic_ui/LICENSE

0 comments on commit da3bb96

Please sign in to comment.