Skip to content

Commit

Permalink
build: macro crate inherits most keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyiam committed Aug 25, 2023
1 parent 3e5637d commit a86fe3b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 23 deletions.
23 changes: 15 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
[package]
name = "michie"
version.workspace = true
edition.workspace = true
description.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
include = [
"/README.md",
"/src/**/*.rs",
"/tests/**/*.rs",
"/tests/compile_fail/*.stderr"
]

[workspace]
version = "3.0.2"
edition = "2021"
description = "An attribute macro that adds memoization to a function (sounds like Mickey)"
Expand All @@ -15,14 +30,6 @@ keywords = [
categories = [
"caching",
]
include = [
"/README.md",
"/src/**/*.rs",
"/tests/**/*.rs",
"/tests/compile_fail/*.stderr"
]

[workspace]
members = [
"macro"
]
Expand Down
22 changes: 7 additions & 15 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
[package]
name = "michie-macro"
version = "3.0.2"
edition = "2021"
description = "proc-macro crate for the michie crate"
repository = "https://github.com/mobusoperandi/michie"
license = "MIT"
keywords = [
"memoization",
"memoisation",
"memoize",
"memoise",
"cache",
]
categories = [
"caching",
]
version.workspace = true
edition.workspace = true
description.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
include = [
"/README.md",
"/src/**/*.rs",
Expand Down

0 comments on commit a86fe3b

Please sign in to comment.