duckscript/duckscript_sdk/Cargo.toml

52 lines
1.2 KiB
TOML
Raw Normal View History

2019-12-30 10:45:28 +00:00
[package]
name = "duckscriptsdk"
2020-11-26 10:59:06 +00:00
version = "0.7.0"
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 = [
2020-11-06 11:25:32 +00:00
"/benches/*",
"/docs/*",
"/examples/*",
"/src/*",
"/tests/*",
"/Cargo.toml",
"/LICENSE",
"/README.md",
2019-12-30 10:45:28 +00:00
]
[dependencies]
attohttpc = "^0.16"
2020-10-01 20:47:39 +00:00
base64 = "^0.13"
cfg-if = "^1.0"
2020-11-26 10:59:06 +00:00
duckscript = { version = "^0.6.0", path = "../duckscript" }
2020-01-02 22:32:48 +00:00
fs_extra = "^1"
2020-07-07 22:24:11 +00:00
fsio = { version = "^0.1.3", features = ["temp-path"] }
2020-06-26 18:03:54 +00:00
ftp = "^3"
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"
2020-04-14 22:15:34 +00:00
num_cpus = "^1"
2019-12-30 10:45:28 +00:00
rand = "^0.7"
2020-10-01 20:47:39 +00:00
semver = "^0.11"
2020-07-28 16:53:57 +00:00
serde_json = "1"
walkdir = "^2"
which = { version = "^4", default-features = false }
whoami = "^1.0"
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"