mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 05:25:38 +00:00
In order to disambiguate things now that libm is part of the compiler-builtins repository, do the following: * Mention libm in LICENSE.txt * Clarify the default license for crates other than libm and compiler-builtins * Add an explicit license field to Cargo.toml for all other crates
20 lines
719 B
TOML
20 lines
719 B
TOML
[package]
|
|
name = "util"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = ["build-musl", "build-mpfr", "unstable-float"]
|
|
build-musl = ["libm-test/build-musl", "dep:musl-math-sys"]
|
|
build-mpfr = ["libm-test/build-mpfr", "dep:rug"]
|
|
unstable-float = ["libm/unstable-float", "libm-test/unstable-float", "rug?/nightly-float"]
|
|
|
|
[dependencies]
|
|
libm = { path = "../../libm", default-features = false }
|
|
libm-macros = { path = "../libm-macros" }
|
|
libm-test = { path = "../../libm-test", default-features = false }
|
|
musl-math-sys = { path = "../musl-math-sys", optional = true }
|
|
rug = { version = "1.27.0", optional = true, default-features = false, features = ["float", "std"] }
|