mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 03:46:29 +08:00
17 lines
197 B
TOML
17 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"
|