You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
546 B
26 lines
546 B
[package]
|
|
name = "units"
|
|
version = "0.2.0"
|
|
authors = ["Avril <flanchan@cumallover.me>"]
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
# TODO: Do we want to strip symbols if we plan to support loading plugins that can register units?
|
|
strip = true
|
|
|
|
|
|
[features]
|
|
default=["f128-math"]
|
|
|
|
# Use 128-bit floating-point math internally where possible.
|
|
f128-math = []
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
smallmap = "1.3.0"
|