Skip to content

Commit

Permalink
move crate info to workspace Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
teamplayer3 committed Dec 20, 2024
1 parent 9c2a14d commit 6da1483
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 27 deletions.
15 changes: 12 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,17 @@ members = [
"postcard-bindgen",
]

exclude = [
"examples"
]
exclude = ["examples"]

resolver = "2"

[workspace.package]
version = "0.5.1"
authors = ["Alexander Hübener <[email protected]>"]
edition = "2021"
repository = "https://github.com/teamplayer3/postcard-bindgen"
keywords = ["postcard", "generating", "javascript", "serde", "serialize"]
categories = ["embedded", "encoding", "no-std"]
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/postcard-bindgen"
18 changes: 10 additions & 8 deletions postcard-bindgen-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "postcard-bindgen-core"
version = "0.5.1"
edition = "2021"
authors = ["Alexander Hübener <[email protected]>"]
repository = "https://github.com/teamplayer3/postcard-bindgen.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
readme.workspace = true
documentation.workspace = true

description = "A crate to generate bindings for the postcard binary format for other languages than Rust - Core Crate"
keywords = ["postcard", "generating", "javascript", "serde", "serialize"]
categories = ["embedded", "encoding", "no-std"]
license = "MIT OR Apache-2.0"
readme = "../README.md"

[features]
default = ["generating"]
Expand Down
19 changes: 11 additions & 8 deletions postcard-bindgen-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
[package]
name = "postcard-bindgen-derive"
version = "0.5.1"
edition = "2021"
authors = ["Alexander Hübener <[email protected]>"]
repository = "https://github.com/teamplayer3/postcard-bindgen.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
readme.workspace = true
documentation.workspace = true

description = "A crate to generate bindings for the postcard binary format for other languages than Rust - Derive Crate"
keywords = ["postcard", "generating", "javascript", "serde", "serialize"]
categories = ["embedded", "encoding", "no-std"]
license = "MIT OR Apache-2.0"
readme = "../README.md"


[features]
expanding = []
Expand Down
18 changes: 10 additions & 8 deletions postcard-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "postcard-bindgen"
version = "0.5.1"
edition = "2021"
authors = ["Alexander Hübener <[email protected]>"]
repository = "https://github.com/teamplayer3/postcard-bindgen.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
readme.workspace = true
documentation.workspace = true

description = "A crate to generate bindings for the postcard binary format for other languages than Rust."
keywords = ["postcard", "generating", "javascript", "serde", "serialize"]
categories = ["embedded", "encoding", "no-std"]
license = "MIT OR Apache-2.0"
readme = "../README.md"

[features]
default = ["generating"]
Expand Down

0 comments on commit 6da1483

Please sign in to comment.