This dependency is needed to make rand compile on wasm targets (see note in readme). However when compiling lemmy_api_common with default features, it doesnt pull in rand at all:
cargo tree -i rand -p lemmy_api_common
error: package ID specification `rand` did not match any packages
Did you mean `want`?
This means that it is unnecessary to specify the getrandom dependency.
This dependency is needed to make
rand
compile on wasm targets (see note in readme). However when compiling lemmy_api_common with default features, it doesnt pull inrand
at all:This means that it is unnecessary to specify the
getrandom
dependency.cc @SleeplessOne1917