-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (44 loc) · 1.53 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
[package]
name = "cargo-flash"
version = "0.10.2"
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"
indicatif = "0.15.0"
env_logger = "0.8.1"
log = { version = "0.4.14", features = ["serde"] }
lazy_static = "1.4.0"
colored = "2.0.0"
probe-rs = { version = "0.10.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-cli-util = { version = "0.10.0", git = "https://github.com/probe-rs/probe-rs", default-features = false, features=["anyhow"] }
gdb-server = { version = "0.10.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-rtt = { version = "0.10.0", git = "https://github.com/probe-rs/probe-rs-rtt" }
git-version = "0.3.4"
anyhow = "1.0.34"
bytesize = "1.0.1"
thiserror = "1.0.23"
dunce = "1.0.1"
serde = "1.0.123"
serde_json = "1.0.62"
serde_yaml = "0.8.17"
config = "0.10.1"
ron = "0.6.4"
defmt-decoder = { version = "0.2.0" }
defmt-elf2table = { version = "0.1.0", features = ['unstable'] }
tungstenite = "0.13.0"
goblin = "0.3.4"
[build-dependencies]
toml = "0.5.8"