forked from probe-rs/probe-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.49 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
[package]
name = "cargo-flash"
version.workspace = true
authors = [
"Noah Hüsser <[email protected]>",
"Dominik Boehi <[email protected]>",
]
edition.workspace = true
description = "A utility to flash ARM cores with ELFs directly from within cargo."
documentation = "https://docs.rs/cargo-flash/"
homepage.workspace = true
repository.workspace = true
readme = "README.md"
categories = ["embedded", "hardware-support", "development-tools::debugging"]
keywords = ["embedded"]
license = "MIT OR Apache-2.0"
[features]
default = []
ftdi = ["probe-rs/ftdi"]
sentry = ["probe-rs-cli-util/sentry"]
[dependencies]
env_logger = "0.10"
colored = "2"
probe-rs = { workspace = true }
probe-rs-cli-util = { workspace = true, features = ["anyhow"] }
anyhow = "1"
bytesize = "1"
thiserror = "1"
dunce = "1"
clap = { version = "4.3.1", features = ["string"] }
git-version = "0.3.5"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
[build-dependencies]
git-version = "0.3.5"
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "## \\[Unreleased\\]"
replace = "## [Unreleased]\n\n## [{{version}}]\n\nReleased {{date}}"
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "\\[unreleased\\]: https://github.com/probe-rs/cargo-flash/compare/v([a-z0-9.-]+)\\.\\.\\.master"
replace = "[unreleased]: https://github.com/probe-rs/cargo-flash/compare/v{{version}}...master\n[{{version}}]: https://github.com/probe-rs/cargo-flash/compare/v$1...v{{version}}"