-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (50 loc) · 1.49 KB
/
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
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
[package]
name = "midpoint"
version = "0.1.5"
authors = ["Dmitrii Demenev <[email protected]>"]
edition = "2021"
#rust-version = "1.56.1" #https://github.com/foresterre/cargo-msrv
description = "Extension traits offering implementations of midpoint [currently, only for primitive integers]."
documentation = "https://docs.rs/midpoint"
readme = "README.md"
repository = "https://github.com/JohnScience/midpoint"
license = "MIT OR Apache-2.0"
# license-file | not needed
keywords = ["extension", "midpoint", "average", "mean"]
categories = ["no-std", "mathematics"] # https://crates.io/category_slugs
# workspace | not needed
# build | not needed
# links | not needed
# exclude | not needed
include = [
"/Cargo.toml",
"/LICENSE_APACHE",
"/LICENSE_MIT",
"/README.md",
"/src/**",
"/benches/**"
]
# publish | not needed
# metadata | not needed
# default-run | not needed
autobins = false
autoexamples = false
autotests = false
autobenches = false
# resolver | not needed
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
primitive_promotion = "0.1.3"
epsi = "0.1.1"
epui = "0.1.1"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "my_benchmark"
harness = false
[features]
all = ["const_trait_impl", "const_fn_trait_bound", "unchecked_math", "const_inherent_unchecked_arith"]
const_trait_impl = []
const_fn_trait_bound = []
unchecked_math = []
const_inherent_unchecked_arith = []