-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
30 lines (28 loc) · 918 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
[package]
name = "shy"
version = "0.1.11-dev"
authors = ["chris west <[email protected]>"]
description = "bare-bones ssh launcher"
repository = "https://github.com/xvxx/shy"
readme = "README.md"
edition = "2018"
license = "MIT"
keywords = ["ssh", "tui", "terminal", "cli"]
categories = ["command-line-utilities"]
exclude = [
"img/*"
]
# Change v1.4.2-dev -> v1.4.2 in CHANGELOG on `cargo release`
[package.metadata.release]
pre-release-replacements = [
{file="README.md", search="shy-v\\d+\\.\\d+\\.\\d+-", replace="{{crate_name}}-v{{version}}-"},
{file="README.md", search="/v\\d+\\.\\d+\\.\\d+/", replace="/v{{version}}/"},
{file="CHANGELOG.md", search="\\d+\\.\\d+\\.\\d+-dev", replace="{{version}}"},
]
dev-version-ext = "dev"
[dependencies]
termion = "=1.5.5"
flume = { version = "=0.7.1", default-features = false, features = ['select'] }
signal-hook = "=0.1.14"
indexmap = "=1.3.2"
fuzzy-matcher = "=0.3.5"