Cargo Features
[dependencies]
kalk = { version = "3.2.1", default-features = false, features = ["rug"] }
- default = rug
-
The
rug
feature is set by default wheneverkalk
is added without
somewhere in the dependency tree.default-features = false
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.
- rug default
-
Affects
kalk_value::with_rug
,kalk_value::format_number_big
,prelude::with_rug
,test_helpers::literal
…