-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
916c291
commit 10a1a02
Showing
3 changed files
with
52 additions
and
2 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
[package] | ||
name = "esp32-wifi-screen" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["JiaYe <[email protected]>"] | ||
edition = "2021" | ||
resolver = "2" | ||
|
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[package] | ||
name = "esp32-wifi-screen" | ||
version = "1.0.0" | ||
authors = ["JiaYe <[email protected]>"] | ||
edition = "2021" | ||
resolver = "2" | ||
rust-version = "1.77" | ||
|
||
[[bin]] | ||
name = "esp32-wifi-screen" | ||
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors | ||
|
||
[profile.release] | ||
opt-level = "s" | ||
|
||
[profile.dev] | ||
debug = true # Symbols are nice and they don't increase the size on Flash | ||
opt-level = "z" | ||
|
||
[features] | ||
default = [] | ||
|
||
experimental = ["esp-idf-svc/experimental"] | ||
|
||
[dependencies] | ||
log = "0.4" | ||
esp-idf-svc = { version = "0.51", features = ["critical-section"] } | ||
esp-idf-hal = "0.45" | ||
embedded-svc = {version = "0.28.1", features = [ "use_serde" ] } | ||
anyhow = { version = "1", default-features = false } | ||
serde_json = { version = "1", default-features = false, features = ["std"]} | ||
serde = { version = "1", default-features = false, features = ["derive"]} | ||
non-empty-string = { version = "0.2.5", features = ["serde"] } | ||
|
||
static_cell = "2.1.0" | ||
mipidsi = { git = "https://github.com/planet0104/mipidsi" } | ||
lz4_flex = "0.11.3" | ||
ab_glyph = { version="0.2.29", default-features = false, features = ["libm"] } | ||
embedded-graphics = "0.8.1" | ||
embedded-canvas = "0.3.1" | ||
once_cell = "1.20.2" | ||
mimetype = "0.1.6" | ||
num = { version = "0.4.1", default-features = false } | ||
image = { version = "0.25.5", default-features = false, features = ["gif", "png"] } | ||
url = "2.5.4" | ||
csscolorparser = "0.7.0" | ||
data-encoding = "2.8.0" | ||
|
||
[build-dependencies] | ||
embuild = "0.33" |
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,6 +1,6 @@ | ||
[package] | ||
name = "wifi-screen-client" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|