-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 844 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 844 Bytes
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
[package]
name = "ravedude"
version = "0.2.2"
authors = ["Rahix <rahix@rahix.de>"]
edition = "2021"
description = "Tool to easily flash code onto an AVR microcontroller with avrdude"
readme = "README.md"
repository = "https://github.com/Rahix/avr-hal/tree/main/ravedude"
license = "MIT OR Apache-2.0"
keywords = ["avr", "arduino", "avrdude"]
categories = ["embedded", "hardware-support", "development-tools"]
[dependencies]
colored = "2.0.0"
tempfile = "3.2.0"
serialport = "4.0.0"
anyhow = "1.0.38"
git-version = "0.3.4"
ctrlc = "3.2.1"
serde = { version = "1.0.197", features = ["serde_derive"] }
toml = "0.8.11"
either = "1.10.0"
clap = { version = "4.0.0", features = ["derive", "env"] }
[target.'cfg(windows)'.dependencies]
terminal-link = "0.1.0"
[profile.dev]
panic = "abort"
[profile.release]
overflow-checks = true
panic = "abort"