Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ tracing = "0.1"
url = { version = "2", optional = true }
uuid = { version = "1.10.0", features = ["v4", "v7"] }
walkdir = { version = "2", optional = true }
worktable_codegen = { path = "codegen", version = "=0.9.0" }
# Renamed dependency: the package on crates.io is `worktable_macros`
# (worktable_codegen's ownership is unavailable), but the lib target and
# every `use worktable_codegen::...` keep the original name.
worktable_codegen = { package = "worktable_macros", path = "codegen", version = "=0.9.0" }

[dev-dependencies]
chrono = "0.4.43"
Expand Down
5 changes: 3 additions & 2 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[package]
name = "worktable_codegen"
name = "worktable_macros"
version = "0.9.0"
edition = "2024"
license = "MIT"
description = "WorkTable codegeneration crate"
description = "Proc-macro companion crate for worktable: the worktable! macro and its derives. Formerly published as worktable_codegen."
repository = "https://github.com/pathscale/WorkTable"

[features]
s3-support = []
Expand Down
Loading