Cargo Features

[dependencies]
rune-modules = { version = "0.14.0", default-features = false, features = ["full", "time", "fs", "http", "json", "process", "signal", "rand", "core", "fmt", "macros", "test"] }
default = core, fmt, io, test

These default features are set whenever rune-modules is added without default-features = false somewhere in the dependency tree.

full = base64, fmt, fs, http, io, json, process, rand, signal, time, toml
time full? = tokio

Enables time of optional tokio

Affects rune-modules::time

fs full? = tokio

Enables fs of optional tokio

Affects rune-modules::fs

http full? = reqwest

Affects rune-modules::http

json full? = serde_json

Affects rune-modules::json

process full?

Enables std of rune, process of tokio

Affects rune-modules::process

signal full?

Enables signal of tokio

Affects rune-modules::signal

rand full? = nanorand

Affects rune-modules::rand

core default
io fmt default full?
macros
test default

Affects rune-modules::test

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.

base64 full?

Affects rune-modules::base64

reqwest http?
tokio fs? process? signal? time?
serde_json json?
toml full?

Affects rune-modules::toml

nanorand rand?