forked from knurling-rs/probe-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (39 loc) · 1.2 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
[package]
authors = ["The Knurling-rs developers"]
categories = ["command-line-utilities", "embedded", "no-std"]
description = "Runs embedded programs just like native ones"
edition = "2021"
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.3.10"
[dependencies]
addr2line = { version = "0.20", default-features = false, features = [
"fallible-iterator",
"std-object",
"rustc-demangle",
"cpp_demangle",
] }
anyhow = "1"
clap = { version = "4.0", features = ["derive", "env"] }
colored = "2"
defmt-decoder = { version = "=0.3.8", features = ["unstable"] }
gimli = { version = "0.27", default-features = false }
git-version = "0.3"
log = "0.4"
object = { version = "0.31", default-features = false }
probe-rs = "0.20"
signal-hook = "0.3"
[dev-dependencies]
dirs = "5"
# insta 1.12 introduces breaking changes to the snapshot tests. it's fixable, but takes time.
insta = "~1.11"
os_pipe = "1.0"
pretty_assertions = "1"
rstest = { version = "0.18", default-features = false }
nix = "0.26"
serial_test = { version = "2", default-features = false }
[features]
ftdi = ["probe-rs/ftdi"]