Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
planet0104 committed Feb 24, 2025
1 parent 916c291 commit 10a1a02
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scr/Cargo.toml
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"
Expand Down
50 changes: 50 additions & 0 deletions scr/Cargo.toml.bak
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"
2 changes: 1 addition & 1 deletion wifi-screen-client/Cargo.toml
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]
Expand Down

0 comments on commit 10a1a02

Please sign in to comment.