forked from rust-lang/libm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (35 loc) · 959 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["no-std"]
description = "libm in pure Rust"
documentation = "https://docs.rs/libm"
keywords = ["libm", "math"]
license = "MIT AND (MIT OR Apache-2.0)"
name = "libm"
readme = "README.md"
repository = "https://github.com/rust-lang/libm"
version = "0.2.9"
edition = "2021"
exclude = ["/ci/", "/.github/workflows/"]
[features]
default = []
# This tells the compiler to assume that a Nightly toolchain is being used and
# that it should activate any useful Nightly things accordingly.
unstable = []
# Used to prevent using any intrinsics or arch-specific code.
force-soft-floats = []
[workspace]
members = [
"crates/compiler-builtins-smoke-test",
"crates/libm-bench",
"crates/libm-test",
]
default-members = [
".",
"crates/libm-test",
]
[dev-dependencies]
no-panic = "0.1.30"
# This is needed for no-panic to correctly detect the lack of panics
[profile.release]
lto = "fat"