This commit is contained in:
Christian Nieves
2022-12-26 14:27:56 -06:00
commit e96fd91657
23 changed files with 474 additions and 0 deletions

32
Cargo.toml Normal file
View File

@ -0,0 +1,32 @@
[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"