#executable #object #shared #std #standard #mode #default

alt-std

适用于制作小型可执行文件和共享对象的替代轻量级Std库

10个版本

0.2.9 2020年6月20日
0.2.8 2020年6月14日

#859数据结构


用于 s-exp

BSD-3-Clause

44KB
1K SLoC

免责声明

这是一个针对Rust制作小型可执行文件的最小化标准库。它不是Rust标准库的替代品!您已经收到通知。

替代标准库

该库的主要目标是提供一个默认std库的小型有用功能子集。它在#![no_std]模式下工作,用于构建小型可执行文件/共享对象。

它提供了以下数据结构

  • Box<T>
  • Unique<T>
  • Vector<T>(可增长数组)
  • HashMap<K, V>
  • String
  • File(仅涵盖部分libc)
  • MemoryStreamReader & MemoryStreamWriter
  • FileReader & FileWriter
  • 支持format!
  • 支持print!println!
  • 支持error!errorln!
  • 支持fprint!fprintln!

许可证

Copyright (c) 2020, Wael El Oraiby
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

    * Neither the name of the author(s) nor the
      names of its contributors may be used to endorse or promote products
      derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL WAEL EL ORAIBY OR OTHER AUTHORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

致谢

哈希表实现借鉴自Google的skia,原始版权为3条款BSD许可证。

依赖项

~43KB