# 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 are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "hello-world-rs" version = "1.0.0" authors = ["Vallabh Kansagara "] exclude = [ ".git", ".gitignore", "Cargo.lock", "README.md", ".github", ] include = [ "**/*.rs", "Cargo.toml", ] publish = true description = "Hello world in Rust language" homepage = "https://github.com/vrkansagara/hello-world-rust/wiki" documentation = "https://github.com/vrkansagara/hello-world-rust/wiki" readme = "README.md" keywords = [ "vrkansagara", "skeleton", "sample", "hello-world", ] license-file = "LICENSE" repository = "https://github.com/vrkansagara/hello-world-rust" [profile.dev] opt-level = 0 lto = false codegen-units = 256 debug = 2 debug-assertions = true rpath = false panic = "unwind" incremental = true strip = "none" [profile.release] opt-level = 3 lto = false codegen-units = 16 debug = false split-debuginfo = "off" debug-assertions = false rpath = false panic = "unwind" overflow-checks = true incremental = false strip = "debuginfo" [profile.staging] opt-level = 3 lto = false codegen-units = 16 debug = true split-debuginfo = "off" debug-assertions = true rpath = false panic = "abort" overflow-checks = true incremental = false inherits = "release" strip = "none" [profile.test] opt-level = 2 lto = true debug = 1 panic = "unwind" overflow-checks = true strip = "symbols" [lib] name = "hello_world_rs" path = "src/lib.rs" [dependencies]