-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 1.05 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
[package]
name = "duckscript_cli"
version = "0.11.1"
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
description = "The duckscript command line executable."
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",
]
[[bin]]
name = "duck"
path = "src/main.rs"
[dependencies]
duckscript = { version = "^0.10.0", path = "../duckscript" }
duckscriptsdk = { version = "^0.11.1", path = "../duckscript_sdk", default-features = false }
[features]
tls-rustls = ["duckscriptsdk/tls-rustls"]
tls-native = ["duckscriptsdk/tls-native"]
tls = ["tls-rustls"] # alias for backward compatibility
default = ["tls-rustls"]