Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump lexpr-macros version number #108

Merged
merged 1 commit into from
Jun 15, 2024
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
2 changes: 1 addition & 1 deletion lexpr-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lexpr-macros"
description = "Internal crate implementing macros exposed by the `lexpr` crate"
version = "0.2.3"
version = "0.2.4"
authors = ["Andreas Rottmann <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rotty/lexpr-rs"
Expand Down
5 changes: 5 additions & 0 deletions lexpr-macros/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Internal crate for `lexpr`

This crate implements the `sexp!` proc-macro for the `lexpr` crate. It
should not be depended-on directly, but via enabling the `sexp-macro`
feature of the `lexpr` crate.
4 changes: 2 additions & 2 deletions lexpr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ sexp-macro = ["lexpr-macros"] # MSRV 1.60+: use the `dep:` prefix here
[dependencies]
itoa = "1.0"
ryu = "1.0.0"
lexpr-macros = { version = "0.2.2", path = "../lexpr-macros", optional = true }
lexpr-macros = { version = "0.2.4", path = "../lexpr-macros", optional = true }

[dev-dependencies]
criterion = "0.5.1"
lexpr-macros = { version = "0.2.2", path = "../lexpr-macros" }
lexpr-macros = { version = "0.2.4", path = "../lexpr-macros" }
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = "0.8.1"
Expand Down
Loading