duckscript/duckscript_sdk/Cargo.toml

69 lines
1.6 KiB
TOML
Raw Permalink Normal View History

2019-12-30 10:45:28 +00:00
[package]
name = "duckscriptsdk"
2024-01-19 07:58:20 +00:00
version = "0.9.3"
2019-12-30 10:45:28 +00:00
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
description = "The duckscript SDK."
license = "Apache-2.0"
2022-01-07 12:20:49 +00:00
edition = "2021"
2019-12-30 10:45:28 +00:00
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 = { version = "^0.28", default-features = false, features = [
"compress",
] }
2024-03-08 14:46:29 +00:00
base64 = "^0.22"
2021-12-10 13:15:14 +00:00
cfg-if = "^1"
colored = "^2"
duckscript = { version = "^0.8.0", path = "../duckscript" }
2023-06-15 19:05:14 +00:00
evalexpr = "^11"
2020-01-02 22:32:48 +00:00
fs_extra = "^1"
2022-08-06 16:31:47 +00:00
fsio = { version = "^0.4", features = ["temp-path"] }
2020-03-07 17:52:23 +00:00
glob = "^0.3"
heck = "^0.5"
2019-12-30 10:45:28 +00:00
home = "^0.5"
2021-04-09 15:48:25 +00:00
ignore = "^0.4"
2023-05-23 20:15:41 +00:00
java-properties = "^2"
2020-04-14 22:15:34 +00:00
num_cpus = "^1"
2020-12-21 09:38:53 +00:00
rand = "^0.8"
2021-11-01 14:19:58 +00:00
semver = "^1"
serde_json = "^1"
sha2 = "^0.10"
suppaftp = "^6.0"
walkdir = "^2"
which = { version = "^6", default-features = false }
2021-11-08 14:09:07 +00:00
whoami = "^1"
2024-05-04 05:33:50 +00:00
zip = { version = "^1", default-features = false, features = [
2023-05-23 20:15:41 +00:00
"bzip2",
"deflate",
"time",
] }
2019-12-30 10:45:28 +00:00
2020-03-07 21:35:54 +00:00
[target.'cfg(not(windows))'.dependencies]
uname = "^0.1"
[features]
tls-rustls = ["attohttpc/rustls"]
tls-native = ["attohttpc/tls"]
tls = ["tls-rustls"] # alias for backward compatibility
default = ["tls-rustls"]
2019-12-30 10:45:28 +00:00
[badges.codecov]
branch = "master"
repository = "sagiegurari/duckscript"
service = "github"