287 lines
4.4 KiB
TOML
287 lines
4.4 KiB
TOML
|
# This Cargo.toml is AUTOGENERATED, you shouldn't need to edit it.
|
||
|
# The `rustling` commands do not rely on this manifest at all, its only purpose
|
||
|
# is to help editors analyze your code.
|
||
|
# To regenerate it, run `cargo generate-manifest`.
|
||
|
[package]
|
||
|
name = 'exercises'
|
||
|
version = '0.1.0'
|
||
|
edition = '2018'
|
||
|
authors = ['The Rustlings Maintainers']
|
||
|
publish = false
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'clippy1'
|
||
|
path = 'clippy/clippy1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'clippy2'
|
||
|
path = 'clippy/clippy2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'as_ref_mut'
|
||
|
path = 'conversions/as_ref_mut.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'from_into'
|
||
|
path = 'conversions/from_into.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'from_str'
|
||
|
path = 'conversions/from_str.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'try_from_into'
|
||
|
path = 'conversions/try_from_into.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'using_as'
|
||
|
path = 'conversions/using_as.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'enums1'
|
||
|
path = 'enums/enums1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'enums2'
|
||
|
path = 'enums/enums2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'enums3'
|
||
|
path = 'enums/enums3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'errors1'
|
||
|
path = 'error_handling/errors1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'errors2'
|
||
|
path = 'error_handling/errors2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'errors3'
|
||
|
path = 'error_handling/errors3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'errorsn'
|
||
|
path = 'error_handling/errorsn.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'result1'
|
||
|
path = 'error_handling/result1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'functions1'
|
||
|
path = 'functions/functions1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'functions2'
|
||
|
path = 'functions/functions2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'functions3'
|
||
|
path = 'functions/functions3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'functions4'
|
||
|
path = 'functions/functions4.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'functions5'
|
||
|
path = 'functions/functions5.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'generics1'
|
||
|
path = 'generics/generics1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'generics2'
|
||
|
path = 'generics/generics2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'generics3'
|
||
|
path = 'generics/generics3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'if1'
|
||
|
path = 'if/if1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'if2'
|
||
|
path = 'if/if2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'macros1'
|
||
|
path = 'macros/macros1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'macros2'
|
||
|
path = 'macros/macros2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'macros3'
|
||
|
path = 'macros/macros3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'macros4'
|
||
|
path = 'macros/macros4.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'modules1'
|
||
|
path = 'modules/modules1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'modules2'
|
||
|
path = 'modules/modules2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'move_semantics1'
|
||
|
path = 'move_semantics/move_semantics1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'move_semantics2'
|
||
|
path = 'move_semantics/move_semantics2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'move_semantics3'
|
||
|
path = 'move_semantics/move_semantics3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'move_semantics4'
|
||
|
path = 'move_semantics/move_semantics4.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'option1'
|
||
|
path = 'option/option1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'option2'
|
||
|
path = 'option/option2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'primitive_types1'
|
||
|
path = 'primitive_types/primitive_types1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'primitive_types2'
|
||
|
path = 'primitive_types/primitive_types2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'primitive_types3'
|
||
|
path = 'primitive_types/primitive_types3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'primitive_types4'
|
||
|
path = 'primitive_types/primitive_types4.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'primitive_types5'
|
||
|
path = 'primitive_types/primitive_types5.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'primitive_types6'
|
||
|
path = 'primitive_types/primitive_types6.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'quiz1'
|
||
|
path = 'quiz1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'quiz2'
|
||
|
path = 'quiz2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'quiz3'
|
||
|
path = 'quiz3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'quiz4'
|
||
|
path = 'quiz4.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'arc1'
|
||
|
path = 'standard_library_types/arc1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'box1'
|
||
|
path = 'standard_library_types/box1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'iterators2'
|
||
|
path = 'standard_library_types/iterators2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'iterators3'
|
||
|
path = 'standard_library_types/iterators3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'iterators4'
|
||
|
path = 'standard_library_types/iterators4.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'strings1'
|
||
|
path = 'strings/strings1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'strings2'
|
||
|
path = 'strings/strings2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'structs1'
|
||
|
path = 'structs/structs1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'structs2'
|
||
|
path = 'structs/structs2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'structs3'
|
||
|
path = 'structs/structs3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'tests1'
|
||
|
path = 'tests/tests1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'tests2'
|
||
|
path = 'tests/tests2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'tests3'
|
||
|
path = 'tests/tests3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'threads1'
|
||
|
path = 'threads/threads1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'traits1'
|
||
|
path = 'traits/traits1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'traits2'
|
||
|
path = 'traits/traits2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'variables1'
|
||
|
path = 'variables/variables1.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'variables2'
|
||
|
path = 'variables/variables2.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'variables3'
|
||
|
path = 'variables/variables3.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'variables4'
|
||
|
path = 'variables/variables4.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'variables5'
|
||
|
path = 'variables/variables5.rs'
|
||
|
|
||
|
[[bin]]
|
||
|
name = 'variables6'
|
||
|
path = 'variables/variables6.rs'
|