Compare commits

...

2 Commits

Author SHA1 Message Date
1d575d06b1 Rename crate 2025-09-13 13:32:19 +03:00
beb35a90e2 Clean up Cargo.toml 2025-09-13 13:31:25 +03:00
2 changed files with 12 additions and 41 deletions

45
Cargo.lock generated
View File

@ -50,24 +50,12 @@ dependencies = [
"unwrap-infallible",
]
[[package]]
name = "az"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973"
[[package]]
name = "bare-metal"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8fe8f5a8a398345e52358e18ff07cc17a568fbca5c6f73873d3a62056309603"
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
name = "cfg-if"
version = "1.0.3"
@ -80,16 +68,6 @@ version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
[[package]]
name = "embedded-graphics-core"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba9ecd261f991856250d2207f6d8376946cd9f412a2165d3b75bc87a0bc7a044"
dependencies = [
"az",
"byteorder",
]
[[package]]
name = "embedded-hal"
version = "0.2.7"
@ -167,6 +145,17 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "slideshow"
version = "0.1.0"
dependencies = [
"atmega-hal",
"avr-device",
"embedded-hal 1.0.0",
"panic-halt",
"ufmt",
]
[[package]]
name = "syn"
version = "1.0.109"
@ -178,18 +167,6 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "tests"
version = "0.1.0"
dependencies = [
"atmega-hal",
"avr-device",
"embedded-graphics-core",
"embedded-hal 1.0.0",
"panic-halt",
"ufmt",
]
[[package]]
name = "ufmt"
version = "0.2.0"

View File

@ -1,5 +1,5 @@
[package]
name = "tests"
name = "slideshow"
version = "0.1.0"
edition = "2024"
@ -10,12 +10,6 @@ embedded-hal = "1.0.0"
atmega-hal = { git = "https://github.com/Rahix/avr-hal?tab=readme-ov-file", rev="cd3edea", version = "0.1.0", features=["atmega328p"] }
ufmt = "0.2.0"
embedded-graphics-core = "0.4.0"
# nb = "1.1.0"
# pwm-pca9685 = "1.0.0"
# infrared = "0.14.1"
# embedded-storage = "0.2"
# arduino-hal = { git = "https://github.com/Rahix/avr-hal?tab=readme-ov-file", version = "0.1.0", features=["arduino-uno"] }
[profile.dev]