Cargo Features
[dependencies]
ibig = { version = "0.3.6", default-features = false, features = ["std", "serde", "num-traits", "rand"] }
- default = num-traits, rand, std
-
These default features are set whenever
ibig
is added without
somewhere in the dependency tree.default-features = false - std default
-
Interface with the std library.
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.
- serde implicit feature
-
Enables serde
serde:
A generic serialization/deserialization framework
- num-traits default
- rand default
-
Affects
ibig::rand
…