[package] name = "pedrov" version = "0.2.0" edition = "2021" # Publishing a crate to crates.io demands these two metadata. # Crates can be published with `cargo publish`, after authenticating with `cargo login`. license = "MIT OR Apache-2.0" description = "A test crate for the Rust book." # Crates published can't be removed. # But its versions can be yanked, blocking future projects from using it as a dependency. # `cargo yank --vers ` yanks a version. --undo can be added to reverse it. # Cargo makes use of release profiles that allow more control over different # types of builds. The main ones are dev and release. # New configuration for a certain profile can be added by adding a its section: [profile.dev] opt-level = 1 # controls optimization level (0-3). # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]