duckscript/duckscript_sdk/Cargo.toml

55 lines
1.2 KiB
TOML
Raw Normal View History

2019-12-30 10:45:28 +00:00
[package]
name = "duckscriptsdk"
2021-09-21 13:38:59 +00:00
version = "0.8.7"
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.17"
2020-10-01 20:47:39 +00:00
base64 = "^0.13"
cfg-if = "^1.0"
2021-09-13 17:37:27 +00:00
duckscript = { version = "^0.7.1", path = "../duckscript" }
2020-01-02 22:32:48 +00:00
fs_extra = "^1"
2021-09-13 17:37:27 +00:00
fsio = { version = "^0.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"
2021-07-14 03:44:47 +00:00
heck = "^0.3"
2019-12-30 10:45:28 +00:00
home = "^0.5"
2021-04-09 15:48:25 +00:00
ignore = "^0.4"
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"
2020-12-21 09:38:53 +00:00
rand = "^0.8"
semver = "^1.0"
serde_json = "^1"
sha2 = "^0.9"
walkdir = "^2"
which = { version = "^4", default-features = false }
whoami = "^1.1"
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"