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
4 changes: 2 additions & 2 deletions Cargo.lock.msrv

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions num_enum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "num_enum"
version = "0.7.5" # Keep in sync with num_enum_derive, the the dependency on it below.
version = "0.7.6" # Keep in sync with num_enum_derive, the the dependency on it below.
rust-version = "1.70.0"
authors = [
"Daniel Wagner-Hall <dawagner@gmail.com>",
Expand Down Expand Up @@ -30,7 +30,7 @@ maintenance = { status = "passively-maintained" }

[dependencies]
rustversion = "1.0.4"
num_enum_derive = { version = "=0.7.5", path = "../num_enum_derive", default-features = false }
num_enum_derive = { version = "=0.7.6", path = "../num_enum_derive", default-features = false }

[dev-dependencies]
anyhow = "1.0.14"
Expand Down
4 changes: 2 additions & 2 deletions num_enum_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "num_enum_derive"
version = "0.7.5" # Keep in sync with num_enum.
version = "0.7.6" # Keep in sync with num_enum.
rust-version = "1.70.0"
authors = [
"Daniel Wagner-Hall <dawagner@gmail.com>",
Expand All @@ -26,7 +26,7 @@ std = ["proc-macro-crate"]
complex-expressions = ["syn/full"]
external_doc = []

default = ["std"] # disable to use in a `no_std` environment
default = ["std"] # disable to use in a `no_std` environment

[package.metadata.docs.rs]
features = ["external_doc"]
Expand Down
Loading