-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
27 lines (22 loc) · 829 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
[package]
authors = ["Jacob Finkelman <Eh2406@wayne.edu>"]
description = "This provides several fast numerical integration methods. This library is pure safe rust, and cross-platform. The double exponential algorithm is naturally adaptive, and does not allocate."
documentation = "https://docs.rs/quadrature/"
keywords = ["math", "mathematics", "numerics"]
categories = ["science", "no-std"]
name = "quadrature"
readme = "README.md"
repository = "https://github.com/Eh2406/quadrature"
version = "0.2.0"
license = "MIT/Apache-2.0"
[badges]
appveyor = { repository = "Eh2406/quadrature" }
travis-ci = { repository = "Eh2406/quadrature", branch = "master" }
[dependencies]
num-traits = { version = "0.2", default-features = false }
[profile]
[profile.bench]
debug = true
[features]
default = ["std"]
std = [ "num-traits/std" ]