[package] name = "units" version = "0.2.0" authors = ["Avril "] 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"