duckscript/duckscript_sdk/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2019-12-30 10:45:28 +00:00
[package]
name = "duckscriptsdk"
2020-04-04 12:37:03 +00:00
version = "0.3.2"
2019-12-30 10:45:28 +00:00
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
description = "The duckscript SDK."
license = "Apache-2.0"
edition = "2018"
documentation = "https://sagiegurari.github.io/duckscript/api/duckscript/index.html"
homepage = "http://github.com/sagiegurari/duckscript"
repository = "https://github.com/sagiegurari/duckscript.git"
readme = "README.md"
keywords = ["script", "script-engine", "language"]
categories = ["command-line-utilities", "development-tools"]
include = [
"/benches/*",
"/docs/*",
"/examples/*",
"/src/*",
"/tests/*",
"/Cargo.toml",
"/LICENSE",
"/README.md"
]
[dependencies]
2020-03-13 22:23:09 +00:00
attohttpc = "^0.12"
base64 = "^0.12"
2020-03-07 17:52:23 +00:00
cfg-if = "^0.1"
2020-03-13 22:23:09 +00:00
duckscript = { version = "^0.3", path = "../duckscript" }
2020-01-02 22:32:48 +00:00
fs_extra = "^1"
2020-02-19 18:19:12 +00:00
fsio = { version = "^0.1", features = ["temp-path"] }
2020-03-07 17:52:23 +00:00
glob = "^0.3"
2019-12-30 10:45:28 +00:00
home = "^0.5"
2020-01-17 10:39:50 +00:00
java-properties = "^1"
2020-01-03 08:17:05 +00:00
meval = "^0.2"
2019-12-30 10:45:28 +00:00
rand = "^0.7"
walkdir = "^2"
2020-03-13 22:23:09 +00:00
whoami = "^0.8"
2019-12-30 10:45:28 +00:00
2020-03-07 21:35:54 +00:00
[target.'cfg(not(windows))'.dependencies]
uname = "^0.1"
2019-12-30 10:45:28 +00:00
[badges.codecov]
branch = "master"
repository = "sagiegurari/duckscript"
service = "github"