mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 22:56:28 +08:00
80e9651fc2
* ✨ feat(codes/rust/array_and_linkedlist): add array * 🐳 chore(codes/rust): update Cargo.toml * ✨ feat(codes/rust/array_and_linkedlist): add list * 📃 docs(codes/rust/array_and_linkedlist): add miss comment --------- Co-authored-by: xblakicex <xblakicex@outlook.com>
16 lines
197 B
TOML
16 lines
197 B
TOML
[package]
|
|
name = "chapter_array_and_linkedlist"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[[bin]]
|
|
name = "array"
|
|
path = "array.rs"
|
|
|
|
[[bin]]
|
|
name = "list"
|
|
path = "list.rs"
|
|
|
|
[dependencies]
|
|
rand = "0.8.5"
|