-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
esp-metadata
rather than redefining the Chip
enum
- Loading branch information
1 parent
efe2258
commit 484f0b6
Showing
3 changed files
with
140 additions
and
101 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "esp-generate" | ||
name = "esp-generate" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
clap = { version = "4.5.18", features = ["derive"] } | ||
|
||
ratatui = { version = "0.28.1", features = ["crossterm"] } | ||
crossterm = { version = "0.28.1" } # Maybe this gives Windows issues like espflash? | ||
rhai = "1.19.0" | ||
clap = { version = "4.5.20", features = ["derive"] } | ||
crossterm = { version = "0.28.1" } # Maybe this gives Windows issues like espflash? | ||
esp-metadata = { version = "0.4.0", features = ["clap"] } | ||
ratatui = { version = "0.29.0", features = ["crossterm"] } | ||
rhai = "1.19.0" | ||
|
||
[build-dependencies] | ||
quote = "1.0.37" | ||
walkdir = "2.5.0" | ||
quote = "1.0.37" |
Oops, something went wrong.