19 lines
314 B
TOML
19 lines
314 B
TOML
|
[package]
|
||
|
name = "moon"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
license = "BSD-2-Clause"
|
||
|
|
||
|
[profile.dev]
|
||
|
panic = "abort"
|
||
|
opt-level = 2
|
||
|
|
||
|
[profile.release]
|
||
|
panic = "abort"
|
||
|
opt-level = 's'
|
||
|
strip = "debuginfo"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|