# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g. crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] name = "basic-tutorial" version = "0.1.0" authors = ["zhengshaodong "] description = "basic-tutorial" license = "MIT" [[bin]] name = "function_test" path = "src/function_test.rs" [[bin]] name = "control_flow_test" path = "src/control_flow_test.rs" [[bin]] name = "ownership_test" path = "src/ownership_test.rs" [[bin]] name = "references_and_borrowing_test" path = "src/references_and_borrowing_test.rs" [[bin]] name = "slice_test" path = "src/slice_test.rs" [[bin]] name = "struct_test" path = "src/struct_test.rs" [[bin]] name = "method_test" path = "src/method_test.rs" [[bin]] name = "enum_test" path = "src/enum_test.rs" [[bin]] name = "match_test" path = "src/match_test.rs" [[bin]] name = "vectors_test" path = "src/vectors_test.rs" [[bin]] name = "strings_test" path = "src/strings_test.rs" [[bin]] name = "map_test" path = "src/map_test.rs" [[bin]] name = "panic_test" path = "src/panic_test.rs" [[bin]] name = "traits_test" path = "src/traits_test.rs" [[bin]] name = "lifetimes_test" path = "src/lifetimes_test.rs" [[bin]] name = "closures_test" path = "src/closures_test.rs" [[bin]] name = "iterators_test" path = "src/iterators_test.rs" [dependencies]