-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (52 loc) · 1.55 KB
/
Cargo.toml
File metadata and controls
65 lines (52 loc) · 1.55 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
members = ["ellip-rayon", "ellip-dev-utils", "ellip-plot-graph"]
[workspace.package]
version = "1.1.0"
authors = ["Sira Pornsiriprasert <code@psira.me>"]
categories = ["mathematics", "science", "no-std"]
keywords = ["special", "elliptic", "integral"]
homepage = "https://github.com/p-sira/ellip"
repository = "https://github.com/p-sira/ellip"
documentation = "https://docs.rs/ellip"
license = "BSD-3-Clause"
[workspace.dependencies]
ellip = { version = "1.1", path = "." }
ellip-dev-utils = { version = "1.1", path = "ellip-dev-utils" }
[package.metadata.release]
dependent-version = "upgrade"
pre-release-hook = ["bash", "scripts/prehook.sh"]
[package]
name = "ellip"
version.workspace = true
authors.workspace = true
categories.workspace = true
keywords.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
license.workspace = true
description = "Elliptic integrals for Rust"
readme = "README.md"
edition = "2021"
include = ["/src", "/LICENSE"]
[dependencies]
num-lazy = "0.4.1"
num-traits = { version = "0.2.19", default-features = false }
numeric_literals = "0.2.0"
[dev-dependencies]
criterion = "0.7"
csv = "1.3.1"
ellip-dev-utils = { workspace = true }
itertools = "0.14"
[[bench]]
name = "bench"
harness = false
[features]
default = ["libm"]
libm = ["num-traits/libm"]
std = ["num-traits/std"]
unstable = []
# Deprecated. Has no effect. The feature flag kept for legacy compatibility. Ellip supports no_std by default.
no_std = []
# Used for generating code coverage report only
test_force_fail = []