Skip to content

Commit

Permalink
fix missing repo url (fix #6)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyTurtleDev committed Apr 14, 2024
1 parent 28378a4 commit 709dce6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
[workspace]
members = ["embedded-sprites", "proc-macro", "example/simple", "example/simple-png"]

[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/LuckyTurtleDev/embedded-sprites"

[workspace.dependencies]
embedded-graphics = "0.8.1"
embedded-graphics-simulator = "0.6.0"
Expand Down
5 changes: 3 additions & 2 deletions embedded-sprites/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ version = "0.1.2"
keywords = ["graphics", "embedded-graphics", "embedded", "no_std", "no-std"]
description = "Embedded no std graphics libary for bundling image at compile time"
include = ["/src/**/*.rs", "/build.rs", "/LICENSE*", "/README.md", "grass.png"]
license = "MIT OR Apache-2.0"
edition = "2021"
license.workspace = true
edition.workspace = true
repository.workspace = true

[dependencies]
embedded-graphics = { workspace = true }
Expand Down
4 changes: 3 additions & 1 deletion example/simple-png/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
workspace = "../.."
name = "simple-png"
version = "0.1.0"
edition = "2021"
publish = false
license.workspace = true
edition.workspace = true
repository.workspace = true

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

Expand Down
4 changes: 3 additions & 1 deletion example/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
workspace = "../.."
name = "simple"
version = "0.1.0"
edition = "2021"
publish = false
license.workspace = true
edition.workspace = true
repository.workspace = true

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

Expand Down
5 changes: 3 additions & 2 deletions proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ name = "embedded-sprites-proc-macro"
version = "0.1.1"
description = "Private implementation detail of embedded-sprites"
include = ["/src/**/*.rs", "/build.rs", "/LICENSE*", "/README.md"]
license = "MIT OR Apache-2.0"
edition = "2021"
license.workspace = true
edition.workspace = true
repository.workspace = true

[lib]
proc-macro = true
Expand Down

0 comments on commit 709dce6

Please sign in to comment.