| Crates.io | string-alloc |
| lib.rs | string-alloc |
| version | 0.0.3 |
| created_at | 2025-03-18 16:13:51.690706+00 |
| updated_at | 2025-03-18 20:40:37.217972+00 |
| description | Allocator-aware no-std-compatible String implementation |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1596754 |
| size | 31,867 |
An allocator-aware, no_std-compatible implementation of String<A> that mirrors std::string::String.
no_std support via extern crate allocuse string_alloc::String;
use std::alloc::Global;
let mut s = String::from_str_in("hello", Global);
s.push_str(" world");
Apache-2.0