Files
comprehensive_rust/Cargo.toml
Christian Nieves e96fd91657 Populate
2022-12-26 14:28:10 -06:00

33 lines
597 B
TOML

[package]
name = "comprehensive_rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[[bin]]
name = "move-semantics"
path = "src/move-semantics.rs"
[[bin]]
name = "moves-in-function-calls"
path = "src/moves-in-function-calls.rs"
[[bin]]
name = "copying"
path = "src/copying.rs"
[[bin]]
name = "lifetimes-function-calls"
path = "src/lifetimes-function-calls.rs"
[[bin]]
name = "lifetimes-structs"
path = "src/lifetimes-structs.rs"
[[bin]]
name = "library"
path = "src/exercises/library.rs"