Skip to content

Commit 67b0609

Browse files
committed
Adjust dependencies in Cargo.toml
1 parent c28716e commit 67b0609

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cache/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,10 @@ categories = ["caching"]
1111
[dependencies]
1212
lru = "0.16.0"
1313
once_cell = "1.21.3"
14+
15+
reactive-macros = { path = "../macros", optional = true }
16+
17+
[features]
18+
default = []
19+
20+
macros = ["reactive-macros"]

macros/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ categories = ["caching"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
once_cell = "1.21.3"
1615
proc-macro2 = "1.0.95"
1716
quote = "1.0.40"
1817
syn = { version = "2.0.104", features = ["full"] }
1918

19+
[dev-dependencies]
20+
once_cell = "1.21.3"
21+
2022
reactive-cache = { path = "../cache" }

0 commit comments

Comments
 (0)