Cargo Features
[dependencies]
hcomplex = { version = "0.2.0", default-features = false, features = ["std", "random", "approx"] }
- default = std
-
The
std
feature is set by default wheneverhcomplex
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of num-complex ^0.3 and num-traits
- random = rand, rand_distr
-
Affects
algebra::random
…
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- rand random?
-
Enables rand ^0.7
- rand_distr random?
-
Enables rand_distr ^0.3
- approx implicit feature
-
Enables approx ^0.4
approx:
Approximate floating point equality comparisons and assertions
Affects
algebra::approx
…