#polynomial #manipulating #toml

无 std polynomial

用于操作多项式的库

16 个版本

0.2.6 2023年9月30日
0.2.5 2023年1月26日
0.2.4 2022年7月26日
0.1.0 2018年8月16日
0.0.4 2015年3月5日

#130 in 数学

Download history 775/week @ 2024-04-22 863/week @ 2024-04-29 1086/week @ 2024-05-06 1199/week @ 2024-05-13 628/week @ 2024-05-20 597/week @ 2024-05-27 983/week @ 2024-06-03 786/week @ 2024-06-10 635/week @ 2024-06-17 875/week @ 2024-06-24 589/week @ 2024-07-01 970/week @ 2024-07-08 905/week @ 2024-07-15 890/week @ 2024-07-22 791/week @ 2024-07-29 977/week @ 2024-08-05

3,583 每月下载量
用于 13 Crates (3 直接)

MIT 许可证

22KB
455

polynomial-rs

maintenance status: passively-maintained license crates.io docs.rs rust 1.70.0+ badge Rust CI codecov

用于操作多项式的库。

文档

如何使用?

将以下内容添加到您的 Cargo.toml

[dependencies]
polynomial = "0.2.6"

no_std 环境

只要存在全局分配器,该库就可以在 no_std 环境中使用。只需将 default-features = false 属性添加到 Cargo.toml

[dependencies]
polynomial = {version = "0.2.6", default-features = false}

如果您想在 no_std 环境中使用浮点数,可以启用 libm 功能

[dependencies]
polynomial = {version = "0.2.6", default-features = false, features = ["libm"]}

最低支持的 Rust 版本 (MSRV)

最低支持的 Rust 版本是 Rust 1.70.0。在任何时候,都支持至少最后 3 个稳定 Rust 版本。

在 Crates 处于预发布状态 (0.x.x) 时,它可能在补丁版本中提高 MSRV。一旦 Crates 达到 1.x,任何 MSRV 提高都将伴随着新的次要版本。

依赖关系

~94–380KB