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
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "3"
members = [
"alloc-traits",
"exit-stack",
Expand All @@ -8,3 +9,9 @@ members = [
"unsize",
"without-alloc",
]

[workspace.package]
authors = ["Aurelia Molzer <5550310+197g@users.noreply.github.com>"]
license = "MIT OR Apache-2.0 OR Zlib"
repository = "https://github.com/197g/static-alloc"
readme = "Readme.md"
2 changes: 1 addition & 1 deletion exit-stack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "Readme.md"
categories = ["embedded", "memory-management", "no-std"]

[dependencies]
static-alloc = { path = "../static-alloc", version = "0.2.1" }
static-alloc = { path = "../static-alloc", version = "0.3.0-prerelease" }

[dev-dependencies]
pin-utils = "0.1"
9 changes: 5 additions & 4 deletions fill/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
name = "fill"
version = "0.1.1"
description = "Provides the Fill trait, an alternative to Extend for finite containers"
authors = ["Aurelia Molzer <5550310+197g@users.noreply.github.com>"]
edition = "2018"
license = "MIT OR Apache-2.0 OR Zlib"
documentation = "https://docs.rs/fill"
repository = "https://github.com/HeroicKatora/static-alloc"
readme = "Readme.md"
keywords = ["fill", "extend", "no-std", "no_std"]
categories = ["embedded", "no-std", "data-structures"]

authors.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true

[dependencies]
# None.

Expand Down
19 changes: 9 additions & 10 deletions static-alloc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "static-alloc"
version = "0.2.6"
version = "0.3.0-prerelease"
description = "A bump allocator on static memory for the alloc-traits crate"
authors = ["Aurelia Molzer <5550310+197g@users.noreply.github.com>"]
edition = "2018"
license = "MIT OR Apache-2.0 OR Zlib"
edition = "2024"
documentation = "https://docs.rs/static-alloc"
repository = "https://github.com/197g/static-alloc"
readme = "Readme.md"
categories = ["embedded", "memory-management", "no-std"]
rust-version = "1.85"

authors.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true

[package.metadata.docs.rs]
all-features = true
Expand All @@ -19,9 +21,6 @@ portable-atomic = { version = "1", optional = true, default-features = false }

[features]
alloc = []
# For apis depending on "try_reserve" (#48043).
# Currently only used in a test for ensure future opportunities.
nightly_try_reserve = []
# Enables the `unsync::Chain` module. Note that this is explicitly outside the
# SemVer stability guarantees!
nightly_chain = ["alloc"]
Expand All @@ -37,7 +36,7 @@ path = "tests/vec.rs"
[[test]]
name = "vec_try"
path = "tests/vec_try.rs"
required-features = ["nightly_try_reserve"]
required-features = []

[[test]]
name = "huuuuuge"
Expand Down
Loading
Loading