forked from probe-rs/cargo-flash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 1.02 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
[package]
name = "cargo-flash"
version = "0.11.0"
authors = ["Noah Hüsser <[email protected]>", "Dominik Boehi <[email protected]>"]
edition = "2018"
description = "A utility to flash ARM cores with ELFs directly from within cargo."
documentation = "https://docs.rs/cargo-flash/"
homepage = "https://github.com/probe-rs/cargo-flash"
repository = "https://github.com/probe-rs/cargo-flash"
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]
structopt = "0.3.20"
env_logger = "0.8.4"
lazy_static = "1.4.0"
colored = "2.0.0"
probe-rs = { version = "0.11.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-cli-util = { version = "0.11.0", git = "https://github.com/probe-rs/probe-rs", default-features = false, features=["anyhow"] }
git-version = "0.3.4"
anyhow = "1.0.41"
bytesize = "1.0.1"
thiserror = "1.0.25"
dunce = "1.0.2"