-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
58 lines (52 loc) · 1.65 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "cargo-script-mvs"
version = "0.2.0"
description = "Proposed cargo command for treat .rs files as full packages"
license = "MIT OR Apache-2.0"
repository = "https://github.com/epage/cargo-script-mvs"
documentation = "https://github.com/epage/cargo-script-mvs"
categories = ["command-line-utilities", "development-tools"]
keywords = ["cargo", "script"]
edition = "2021"
rust-version = "1.65.0" # MSRV
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
[package.metadata.release]
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/epage/cargo-script-mvs/compare/{{tag_name}}...HEAD", exactly=1},
]
[features]
vendored-libgit2 = ["cargo/vendored-libgit2"]
vendored-openssl = ["cargo/vendored-openssl"]
[lib]
name = "cargo_eval"
[dependencies]
anyhow = "1.0.71"
blake3 = "1.3.3"
cargo = "0.70.1"
cargo-util = "0.2.3"
clap = { version = "4.3.0", features = ["derive", "cargo"] }
dirs-next = "2"
dunce = "1.0.4"
env_logger = "0.10"
home = "0.5.5"
is-terminal = "0.4.7"
log = "0.4"
pulldown-cmark = "0.9"
regex = "1.8.3"
toml = "0.7"
[dev-dependencies]
snapbox = { version = "0.4.11", features = ["cmd", "path"] }
[profile.release]
lto = true