Skip to content

Commit

Permalink
Update Cargo metadata for both crates, incl the published repository
Browse files Browse the repository at this point in the history
  • Loading branch information
myrrlyn committed Aug 23, 2017
1 parent 18c1201 commit f3d3c7f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
16 changes: 12 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
[package]
name = "endian_trait"
version = "0.1.0"
version = "0.1.1"
authors = [
"myrrlyn <myrrlyn@outlook.com>",
]
license = "MIT"
description = "A trait for Endianness conversions that can be implemented on most types"
readme = "README.md"
keywords = [
"endian",
]
repository = "https://github.com/myrrlyn/endian_trait"

[dependencies]
endian_trait_derive = { path = "endian_trait_derive", version = "0.1" }
[dependencies.endian_trait_derive]
path = "endian_trait_derive"
version = "0.1"

[workspace]
endian_trait_derive = { path = "endian_trait_derive" }
members = [
"endian_trait_derive",
]
9 changes: 8 additions & 1 deletion endian_trait_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
[package]
name = "endian_trait_derive"
version = "0.1.0"
version = "0.1.1"
authors = [
"myrrlyn <myrrlyn@outlook.com>",
]
license = "MIT"
description = "A custom derive for the Endian trait"
keywords = [
"endian",
"custom-derive",
]
readme = "README.md"
repository = "https://github.com/myrrlyn/endian_trait"
workspace = ".."

[lib]
proc-macro = true
Expand Down

0 comments on commit f3d3c7f

Please sign in to comment.