-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (60 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
63 lines (60 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "duckscriptsdk"
version = "0.11.1"
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
description = "The duckscript SDK."
license = "Apache-2.0"
edition = "2021"
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]
attohttpc = { version = "^0.29", default-features = false, features = [
"compress",
] }
base64 = "^0.22"
cfg-if = "^1"
colored = "^3"
duckscript = { version = "^0.10.0", path = "../duckscript" }
evalexpr = "^13"
fs_extra = "^1"
fsio = { version = "^0.4", features = ["temp-path"] }
glob = "^0.3"
heck = "^0.5"
home = "^0.5"
ignore = "^0.4"
java-properties = "^2"
num_cpus = "^1"
rand = "^0.9"
semver = "^1"
serde_json = "^1"
sha2 = "^0.10"
suppaftp = "^7.0"
walkdir = "^2"
which = { version = "^7", default-features = false }
whoami = "^1"
zip = { version = "^6", default-features = false, features = [
"bzip2",
"deflate",
"time",
] }
[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"]