forked from fornwall/rust-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 974 Bytes
/
Cargo.toml
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
[package]
name = "rust-script"
version = "0.17.0"
edition = "2018"
authors = ["Fredrik Fornwall <fredrik@fornwall.net>"]
description = "Command-line tool to run Rust \"scripts\" which can make use of crates."
homepage = "https://rust-script.org"
documentation = "https://rust-script.org"
repository = "https://github.com/fornwall/rust-script"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["cargo", "script"]
categories = ["command-line-utilities", "development-tools"]
exclude = [
"_config.yml",
"CNAME",
".github",
"target"
]
[dependencies]
clap = "3.0.0-beta.4"
dirs-next = "2"
env_logger = "0.8"
lazy_static = "1"
log = "0.4"
pulldown-cmark = "0.8"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha-1 = "0.9"
toml = "0.5"
[target.'cfg(windows)'.dependencies]
winreg = "0.7"
[target.'cfg(unix)'.dependencies]
atty = "0.2"
[dev-dependencies]
scan-rules = "0.2"
tempfile = "3"
[profile.release]
lto = true