Cargo Features

[dependencies]
tiny-cid = { version = "0.3.0", default-features = false, features = ["std", "scale-codec", "serde-codec", "test"] }
default = std

The std feature is set by default whenever tiny-cid is added without default-features = false somewhere in the dependency tree.

std default = multibase

Enables std of tiny-multihash and unsigned-varint ^0.5.1

scale-codec = parity-scale-codec

Enables scale-codec of tiny-multihash

serde-codec = serde

Enables serde-codec of tiny-multihash

test = quickcheck, rand

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.

multibase std

Enables multibase ^0.8.0

parity-scale-codec scale-codec?

Enables parity-scale-codec ^1.3.5

quickcheck test?

Enables quickcheck ^0.9.2

rand test?

Enables rand ^0.7.3

serde serde-codec?