-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 824 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "pymath"
version = "0.0.1"
edition = "2024"
description = "A binary representation compatible Rust implementation of Python's math library."
license = "PSF-2.0"
[features]
# Do not enable this feature unless you really need it.
# CPython didn't intend to use FMA for its math library.
# This project uses this feature in CI to verify the code doesn't have additional bugs on aarch64-apple-darwin.
# However, this does not mean that using this feature is better or more correct on that platform.
# Note that the quality of the results has been well-tested without FMA but has not been tested with FMA.
# See also: https://github.com/python/cpython/issues/132763
mul_add = []
[dependencies]
errno = "0.3"
libc = "0.2"
[dev-dependencies]
proptest = "1.6.0"
pyo3 = { version = "0.24", features = ["abi3"] }