Skip to content

Commit

Permalink
fix: specify version of dependency for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Leandros committed Oct 9, 2024
1 parent 344d70b commit 379ba9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ferrunix-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ categories.workspace = true
proc-macro = true

[features]
default = ["development"]
default = ["development", "multithread"]
multithread = ["ferrunix-core/multithread"]
development = ["syn/extra-traits", "dep:prettyplease"]

[dependencies]
ferrunix-core.workspace = true
ferrunix-core = { path = "../ferrunix-core", default-features = false, version = "0.1.0" }

syn = { version = "2", features = ["extra-traits"] }
prettyplease = { version = "0.2", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion ferrunix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ multithread = ["ferrunix-core/multithread"]
derive = ["dep:ferrunix-macros"]

[dependencies]
ferrunix-core = { path = "../ferrunix-core", default-features = false }
ferrunix-core = { path = "../ferrunix-core", default-features = false, version = "0.1.0" }

# Optional dependencies
ferrunix-macros = { workspace = true, optional = true }

0 comments on commit 379ba9d

Please sign in to comment.