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

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/fast/stacksafe"
rust-version = "1.80.0"
version = "0.1.1"

[workspace.dependencies]
# workspace dependencies
stacksafe = { version = "0.1.0", path = "stacksafe" }
stacksafe-macro = { version = "=0.1.0", path = "stacksafe-macro" }
stacksafe = { version = "0.1.1", path = "stacksafe" }
stacksafe-macro = { version = "=0.1.1", path = "stacksafe-macro" }

# crates.io dependencies
derive-visitor = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion stacksafe-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[package]
name = "stacksafe-macro"
version = "0.1.0"

categories = ["memory-management", "rust-patterns"]
description = "Procedural macro implementation for the stacksafe crate."
Expand All @@ -12,6 +11,7 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion stacksafe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[package]
name = "stacksafe"
version = "0.1.0"

categories = ["memory-management", "rust-patterns"]
description = "Prevent stack overflow in deeply recursive functions with automatic stack management."
Expand All @@ -12,6 +11,7 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[package.metadata.docs.rs]
all-features = true
Expand Down
Loading