smokepatio/Cargo.toml

21 lines
474 B
TOML
Raw Normal View History

2024-01-11 01:24:29 +00:00
workspace = { members = ["ecplorer"] }
2023-12-29 05:31:04 +00:00
[package]
name = "smokepatio"
version = "0.1.0"
edition = "2021"
description = "Low-level hardware interfaces for Valve's Steam Deck"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-01-09 02:56:06 +00:00
[features]
std = ["embedded-io/std"]
async = ["embedded-io-async"]
2024-01-09 02:56:06 +00:00
2023-12-29 05:31:04 +00:00
[dependencies]
# logging
log = "0.4"
2024-01-09 02:56:06 +00:00
# io
embedded-io = { version = "0.6" }
embedded-io-async = { version = "0.6", optional = true }