forked from knurling-rs/probe-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 1.03 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
[package]
authors = ["The Knurling-rs developers"]
categories = ["command-line-utilities", "embedded", "no-std"]
description = "Runs embedded programs just like native ones"
edition = "2018"
keywords = ["knurling", "cargo-runner"]
license = "MIT OR Apache-2.0"
name = "probe-run"
readme = "README.md"
repository = "https://github.com/knurling-rs/probe-run"
version = "0.2.4"
[dependencies]
addr2line = "0.14"
ansi_term = "0.12"
anyhow = "1.0"
colored = "2.0"
defmt-decoder = { version = "=0.2.2", features = ['unstable'] }
difference = "2.0"
either = "1.6"
gimli = "0.23"
git-version = "0.3"
hidapi = "1.2"
log = "0.4"
# an addr2line trait is implement for a type in this particular version
object = "0.22"
probe-rs = "0.10"
probe-rs-rtt = "0.10"
rustc-demangle = "0.1"
signal-hook = "0.3"
structopt = "0.3"
[dev-dependencies]
insta = "1.7"
os_pipe = "0.9"
pretty_assertions = "0.7"
rstest = "0.10"
[patch.crates-io]
probe-rs-rtt = { git = "https://github.com/probe-rs/probe-rs-rtt.git" }
probe-rs = { git = "https://github.com/probe-rs/probe-rs.git"}