Skip to content

Commit 48286e4

Browse files
authored
Merge pull request #6 from probe-rs/update-cargo-toml
Fix Cargo.toml so this crate can be released
2 parents d0ff829 + 4a7be3a commit 48286e4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Cargo.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,24 @@ authors = [
66
"Emil Fresk <[email protected]>",
77
"Adam Greig <[email protected]>",
88
]
9+
description = "Helper library for creating SWD/JTAG debug probes"
10+
license = "MIT OR Apache-2.0"
11+
repository = "https://github.com/probe-rs/dap-rs"
12+
documentation = "https://docs.rs/dap-rs"
913

1014
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1115

1216
[dependencies]
1317
num_enum = { version = "0.5.6", default-features = false }
1418
usb-device = { version = "0.3.1", features = ["control-buffer-256"] }
1519
embedded-hal = "1.0.0"
16-
replace_with = { version = "0.1.7", default-features = false, features = [
17-
"panic_abort",
18-
] }
20+
replace_with = { version = "0.1.7", default-features = false, features = ["panic_abort"] }
1921
bitflags = "1.3.2"
2022

2123
[dependencies.defmt]
2224
optional = true
23-
version = ">=0.2.3,<0.4.0"
25+
version = "0.3"
2426

2527
[features]
28+
defmt = ["dep:defmt"]
2629
usb-hs = []

0 commit comments

Comments
 (0)