Skip to content
Cargo.toml 1.04 KiB
Newer Older
[package]
theMackabu's avatar
theMackabu committed
name = "script"
version = "0.4.1"
edition = "2021"
theMackabu's avatar
theMackabu committed
license = "MIT"
theMackabu's avatar
theMackabu committed
repository = "https://github.com/themackabu/script"
theMackabu's avatar
theMackabu committed
description = "barebones http scripting"
theMackabu's avatar
theMackabu committed
[profile.release]
strip = true

[dependencies]
theMackabu's avatar
theMackabu committed
peg = "0.8.4"
theMackabu's avatar
theMackabu committed
home = "0.5.9"
mime = "0.3.17"
theMackabu's avatar
theMackabu committed
toml = "0.8.19"
theMackabu's avatar
theMackabu committed
redis = "0.24.0"
theMackabu's avatar
theMackabu committed
tokio = "1.40.0"
anyhow = "1.0.86"
askama = "0.12.1"
colored = "2.1.0"
theMackabu's avatar
theMackabu committed
rhai-fs = "0.1.3"
rhai-url = "0.0.5"
theMackabu's avatar
theMackabu committed
tracing = "0.1.40"
theMackabu's avatar
theMackabu committed
actix-web = "4.9.0"
macros-rs = "1.2.5"
termcolor = "1.4.1"
smartstring = "1.0.1"
serde_json = "1.0.127"
theMackabu's avatar
theMackabu committed
tracing-subscriber = "0.3.18"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[dependencies.mongodb]
theMackabu's avatar
theMackabu committed
default-features = false
features = ["sync"]
theMackabu's avatar
theMackabu committed
version = "2.8.2"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[dependencies.pickledb]
theMackabu's avatar
theMackabu committed
features = [
	 "json",
	 "bincode",
	 "cbor",
	 "yaml",
]
version = "0.5.1"

theMackabu's avatar
theMackabu committed
[dependencies.regex]
theMackabu's avatar
theMackabu committed
package = "fancy-regex"
version = "0.12.0"

theMackabu's avatar
theMackabu committed
[dependencies.reqwest]
theMackabu's avatar
theMackabu committed
features = ["blocking"]
theMackabu's avatar
theMackabu committed
version = "0.11.27"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[dependencies.rhai]
theMackabu's avatar
theMackabu committed
features = [
	 "serde_json",
	 "serde",
]
theMackabu's avatar
theMackabu committed
version = "1.19.0"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[dependencies.serde]
theMackabu's avatar
theMackabu committed
features = ["derive"]
theMackabu's avatar
theMackabu committed
version = "1.0.209"