dstructs

Crates.iodstructs
lib.rsdstructs
version0.1.0
created_at2025-06-15 06:13:46.493401+00
updated_at2025-06-15 06:13:46.493401+00
descriptionA collection of high-performance data structures for Rust
homepagehttps://github.com/Adiao1973/dstructs
repositoryhttps://github.com/Adiao1973/dstructs
max_upload_size
id1712974
size173,799
(Adiao1973)

documentation

https://docs.rs/dstructs

README

dstructs

一个高性能的 Rust 数据结构库,提供线程安全和高效的数据结构实现。

特性

  • 🚀 高性能: 优化的数据结构实现
  • 🔒 线程安全: 支持并发操作的数据结构
  • 🛡️ 内存安全: 100% 安全 Rust 代码,无 unsafe 块
  • 📖 完整文档: 详细的 API 文档和使用示例

快速开始

在你的 Cargo.toml 中添加依赖:

[dependencies]
dstructs = "0.1.0"

基本使用:

use dstructs::prelude::*;

fn main() {
    // 初始化库
    dstructs::init();
    
    // 使用数据结构
    // ... 你的代码
}

支持的数据结构

  • 并发数据结构
  • 高性能集合类型
  • 专用算法实现

文档

详细文档请访问 docs.rs/dstructs

许可证

本项目基于 MIT 许可证开源。详情请见 LICENSE-MIT 文件。

贡献

欢迎提交 Issues 和 Pull requests!

版本历史

  • 0.1.0 - 初始版本
Commit count: 2

cargo fmt