14 lines
388 B
TOML
14 lines
388 B
TOML
[package]
|
|
name = "gems_experience"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
# the profile used for `cargo build`
|
|
[profile.dev]
|
|
panic = "abort" # disable stack unwinding on panic
|
|
|
|
# the profile used for `cargo build --release`
|
|
[profile.release]
|
|
panic = "abort" # disable stack unwinding on panic
|