Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rowan-sl/na_print
Printing without allocations (in rust)
https://github.com/rowan-sl/na_print
Last synced: 6 days ago
JSON representation
Printing without allocations (in rust)
- Host: GitHub
- URL: https://github.com/rowan-sl/na_print
- Owner: rowan-sl
- License: mit
- Created: 2022-08-29T21:39:06.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-29T23:56:47.000Z (about 2 years ago)
- Last Synced: 2024-04-25T13:02:12.673Z (7 months ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# na_print: debugging without allocation
it does whats in the name, I dont know what else to say here.
This is mostly intended for debugging global alloc implementations, when allocating to print debug info would cause recursion.
## Thread-saftey
This is thread safe, however it does not use any locking, so there may be some issues with interleaved output when using multithreading.
## MSRV
rust stable `1.56.1`
## Platform compatability
currently only `#[cfg(unix)]` platforms (so no windows). PRs adding support for other platforms are welcome!