Skip to content

Commit 662ab4d

Browse files
committed
chore: fix manifests
1 parent a5de8f7 commit 662ab4d

File tree

3 files changed

+26
-9
lines changed

3 files changed

+26
-9
lines changed

Cargo.toml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
[workspace]
22
members = ["difficient-macros"]
33

4-
[package]
5-
name = "difficient"
6-
version = "0.1.0"
7-
description = "Efficient, type-safe, zero-allocation structural diffing"
8-
edition = "2021"
4+
[workspace.package]
5+
edition = "2024"
96
license = "MIT"
107
repository = "http://github.com/redbadger/difficient"
118
homepage = "http://github.com/redbadger/difficient"
129
keywords = ["derive", "diff", "structural diff"]
10+
11+
[package]
12+
name = "difficient"
13+
version = "0.1.0"
14+
description = "Efficient, type-safe, zero-allocation structural diffing"
1315
readme = "README.md"
16+
edition.workspace = true
17+
license.workspace = true
18+
repository.workspace = true
19+
homepage.workspace = true
20+
keywords.workspace = true
1421

1522
[dependencies]
1623
chrono = { version = "0.4", optional = true }

difficient-macros/Cargo.toml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
[lib]
2-
proc-macro = true
3-
41
[package]
52
name = "difficient-macros"
3+
description = "macros for the difficient crate"
64
version = "0.1.0"
7-
edition = "2024"
5+
readme = "README.md"
6+
edition.workspace = true
7+
license.workspace = true
8+
repository.workspace = true
9+
homepage.workspace = true
10+
keywords.workspace = true
11+
12+
[lib]
13+
proc-macro = true
814

915
[dependencies]
1016
darling = "0.21.0"

difficient-macros/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Macros for "Difficient"
2+
Efficient, type-safe, (almost) zero-allocation structural diffing.
3+
4+
See [difficient](https://github.com/redbadger/difficient) for more information.

0 commit comments

Comments
 (0)