forked from knurling-rs/probe-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (44 loc) · 1.23 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]
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-rp"
readme = "README.md"
repository = "https://github.com/knurling-rs/probe-run"
version = "0.2.5"
[dependencies]
addr2line = "0.15"
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.24"
git-version = "0.3"
hidapi = { version = "1.2", default-features = false }
log = "0.4"
object = "0.24"
probe-rs = "0.11"
probe-rs-rtt = "0.11"
rustc-demangle = "0.1"
signal-hook = "0.3"
structopt = "0.3"
[dev-dependencies]
dirs = "3.0"
insta = "1.7"
os_pipe = "0.9"
pretty_assertions = "0.7"
rstest = "0.10"
nix = "0.22.1"
serial_test = "0.5.1"
[patch.crates-io]
probe-rs = { git = "https://github.com/probe-rs/probe-rs" }
probe-rs-rtt = { git = "https://github.com/probe-rs/probe-rs-rtt" }
#probe-rs = { path = "../probe-rs/probe-rs" }
#defmt-decoder = { path = "../defmt/decoder" }
#defmt-elf2table = { path = "../defmt/elf2table" }
#defmt-logger = { path = "../defmt/logger" }