#should default features be disabled to enable optional features

1 messages · Page 1 of 1 (latest)

round zealot
#

for example if i want to use native, should i do default-features = false so that rustls-native-roots isnt enabled? same goes for other features and crates

frozen wind
#

if the default features and the ones you want to enable are mutually exclusive/conflict, yes

#

it is also generally good practice to disable features you don't need, especially those in the default featureset

round zealot
#

oh i see