-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
32 lines (29 loc) · 868 Bytes
/
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
[package]
name = "esp-generate"
version = "0.2.1"
edition = "2021"
rust-version = "1.74"
description = "Template generation tool to create no_std applications targeting Espressif's chips"
repository = "https://github.com/esp-rs/esp-generate"
license = "MIT OR Apache-2.0"
keywords = ["esp32", "template"]
categories = ["command-line-utilities", "template-engine"]
include = [
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"src",
"template",
]
[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
crossterm = "0.28.1"
env_logger = "0.11.5"
esp-metadata = { version = "0.4.0", features = ["clap"] }
log = "0.4.22"
ratatui = { version = "0.29.0", features = ["crossterm"] }
rhai = "1.20.0"
[build-dependencies]
quote = "1.0.37"
walkdir = "2.5.0"