rune-modules 0.7.0

Native modules for Rune, an embeddable dynamic programming language for Rust.
Documentation
[package]
name = "rune-modules"
version = "0.7.0"
authors = ["John-John Tedro <udoprog@tedro.se>"]
license = "MIT/Apache-2.0"
edition = "2018"
readme = "README.md"
repository = "https://github.com/rune-rs/rune"
homepage = "https://github.com/rune-rs/rune"
documentation = "https://docs.rs/rune-modules"
keywords = ["language", "scripting"]
categories = []
description = """
Native modules for Rune, an embeddable dynamic programming language for Rust. 
"""

[features]
default = ["test", "core", "io", "fmt"]
full = ["time", "http", "json", "toml", "fs", "process", "signal", "rand", "io", "fmt"]
time = ["tokio", "tokio/time"]
fs = ["tokio", "tokio/fs"]
http = ["reqwest"]
json = ["serde_json"]
process = ["tokio/process"]
signal = ["tokio/signal"]
rand = ["nanorand"]
experiments = []
test = []
core = []
io = []
fmt = []

[dependencies]
reqwest = {version = "0.10.7", optional = true, default-features = false, features = ["rustls-tls", "gzip", "json"]}
tokio = {version = "0.2.22", optional = true}
serde_json = {version = "1.0.57", optional = true}
toml = {version = "0.5.6", optional = true}
nanorand = {version = "0.4.4", optional = true, features = ["getrandom"]}

rune = {version = "0.7.0", path = "../rune"}
runestick = {version = "0.7.0", path = "../runestick"}

[package.metadata.docs.rs]
all-features = true