Skip to content

Commit b60e993

Browse files
committed
wip
1 parent 4ab6b40 commit b60e993

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ readme = "./README.md"
1313
include = ["src/**/*", "Cargo.toml", "../../README.md", "LICENSE"]
1414

1515
[dependencies]
16-
key-paths-core = { path = "key-paths-core", version = "0.6.0" }
17-
key-paths-derive = { path = "key-paths-derive"}
16+
key-paths-core = { path = "key-paths-core", version = "0.7.0" }
17+
key-paths-derive = { path = "key-paths-derive", version = "0.1.0"}
1818

1919

2020
[workspace]
@@ -26,6 +26,7 @@ members = [
2626

2727
[patch.crates-io]
2828
key-paths-core = { path = "key-paths-core" }
29+
key-paths-derive = { path = "key-paths-derive" }
2930

3031
[features]
3132
default = []

key-paths-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "key-paths-core"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2024"
55
authors = ["Codefonsi <[email protected]>"]
66
license = "MPL-2.0"

key-paths-derive/Cargo.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
[package]
22
name = "key-paths-derive"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55
description = "Proc-macro derive to generate keypath methods"
66
license = "MPL-2.0"
7+
authors = ["Codefonsi <[email protected]>"]
8+
description = "ReadableKeyPath, WritableKeyPath and EnumKeypath for struct and enums in Rust."
9+
repository = "https://github.com/codefonsi/key-paths-derive"
10+
homepage = "https://github.com/codefonsi/rust-key-paths"
11+
documentation = "https://docs.rs/key-paths-derive"
12+
keywords = ["keypaths", "EnumKeyPath", "type-safe", "macros", "proc"]
13+
readme = "./README.md"
14+
include = ["src/**/*", "Cargo.toml", "../../README.md", "LICENSE"]
715

816
[lib]
917
proc-macro = true

0 commit comments

Comments
 (0)