diff --git a/Cargo.toml b/Cargo.toml index e8a5e6b..e02e623 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,3 +20,4 @@ codegen-units = 16 debug = false overflow-checks = false lto = false + diff --git a/plastic_core/Cargo.toml b/plastic_core/Cargo.toml index 36eeace..223d89c 100644 --- a/plastic_core/Cargo.toml +++ b/plastic_core/Cargo.toml @@ -3,8 +3,12 @@ name = "plastic_core" version = "0.3.0" authors = ["Amjad Alsharafi "] 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" diff --git a/plastic_core/LICENSE b/plastic_core/LICENSE new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/plastic_core/LICENSE @@ -0,0 +1 @@ +../LICENSE \ No newline at end of file diff --git a/plastic_tui/Cargo.toml b/plastic_tui/Cargo.toml index 319d6be..489b018 100644 --- a/plastic_tui/Cargo.toml +++ b/plastic_tui/Cargo.toml @@ -3,8 +3,12 @@ name = "plastic_tui" version = "0.3.0" authors = ["Amjad Alsharafi "] 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" } @@ -13,3 +17,4 @@ crossterm = "0.28" gilrs = "0.11" dynwave = "0.1.0" ratatui = "0.28.1" + diff --git a/plastic_tui/LICENSE b/plastic_tui/LICENSE new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/plastic_tui/LICENSE @@ -0,0 +1 @@ +../LICENSE \ No newline at end of file diff --git a/plastic_ui/Cargo.toml b/plastic_ui/Cargo.toml index 9995c3c..c3b2fda 100644 --- a/plastic_ui/Cargo.toml +++ b/plastic_ui/Cargo.toml @@ -1,13 +1,22 @@ [package] name = "plastic" version = "0.3.0" +authors = ["Amjad Alsharafi "] 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" + diff --git a/plastic_ui/LICENSE b/plastic_ui/LICENSE new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/plastic_ui/LICENSE @@ -0,0 +1 @@ +../LICENSE \ No newline at end of file