forked from probe-rs/cargo-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 1.51 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]
name = "cargo-embed"
version = "0.12.0"
authors = ["Noah Hüsser <[email protected]>"]
edition = "2018"
description = "A utility to develop software for embedded ARM and RISC-V cores."
documentation = "https://docs.rs/cargo-embed/"
homepage = "https://github.com/probe-rs/cargo-embed"
repository = "https://github.com/probe-rs/cargo-embed"
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]
probe-rs = { version = "0.12.0", git = "https://github.com/probe-rs/probe-rs" }
gdb-server = { version = "0.12.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-cli-util = { version = "0.12.0", git = "https://github.com/probe-rs/probe-rs", default-features = false, features=["anyhow"] }
probe-rs-rtt = { version = "0.12.0", git = "https://github.com/probe-rs/probe-rs" }
structopt = "0.3.25"
git-version = "0.3.5"
env_logger = "0.9.0"
log = { version = "0.4.14", features = ["serde"] }
lazy_static = "1.4.0"
colored = "2.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.72" }
figment = { version = "0.10", features = ["toml", "json", "yaml", "env"] }
chrono = "0.4"
crossterm = "<= 0.22.2"
goblin = "0.4.2"
tui = { version = "0.16.0", default-features = false, features = ["crossterm"] }
anyhow = "1.0.51"
textwrap = "0.14.2"
defmt-decoder = { version = "0.3.0", features = ["unstable"] }