[package]
edition = "2021"
name = "hj_ds"
version = "0.1.1"
authors = ["HaojieZhang zhj630985214@gmail.com"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A data structure library for Rust"
readme = "README.md"
keywords = [
"data-structure",
"algorithm",
"rust",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/HaojieZhang6848/hj_ds"
[lib]
name = "hj_ds"
path = "src/lib.rs"
[[bin]]
name = "bst_demo"
path = "src/bin/bst_demo.rs"
[[bin]]
name = "linked_list_demo"
path = "src/bin/linked_list_demo.rs"
[dev-dependencies.rand]
version = "0.8.5"