Cargo Features

[dependencies]
cyder-tools = { version = "0.1.1", default-features = false, features = ["logger", "conn", "auth", "oss"] }
default = logger

The logger feature is set by default whenever cyder-tools is added without default-features = false somewhere in the dependency tree.

logger default = chrono, log

Affects cyder-tools::log

conn = r2d2, redis
auth = argon2, jsonwebtoken, serde

Affects cyder-tools::auth

oss = aws-sdk-s3, uuid

Affects cyder-tools::s3, cyder-tools::oss

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.

argon2 auth?
aws-sdk-s3 oss?
chrono logger
jsonwebtoken auth?
log logger
r2d2 conn?
redis conn?

Enables redis ^0.28.1

Affects cyder-tools::conn

serde auth?
uuid oss?