-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
24 lines (24 loc) · 869 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
[package]
name = "rs-math"
version = "0.1.0"
edition = "2021"
license-file="LICENSE"
description="""
This is a math library, a math library written in Rust.
Write in a native way as much as possible in this math library, reducing the use of third-party libraries.
There may be some errors in this math library, and we hope that users can provide suggestions for modification. I will continue to track related issues when submitting Issues, and if possible, please also participate in my project.
"""
readme="Readme.md"
repository="https://github.com/huifer/rs-math.git"
homepage="https://huifer.github.io/rs-math/"
keywords=["math","rust","utils"]
authors=["Zen Huifer <[email protected]>"]
[dependencies]
approx = { version = "0.5.0", features = [] }
log = "0.4.20"
env_logger = "0.10"
[dev-dependencies]
ctor = "0.1.19"
[[test]]
name = "all_test"
path = "tests/lib.rs"