2024-01-11 01:24:29 +00:00
|
|
|
workspace = { members = ["ecplorer"] }
|
2024-01-11 01:40:50 +00:00
|
|
|
|
2023-12-29 05:31:04 +00:00
|
|
|
[package]
|
|
|
|
name = "smokepatio"
|
2024-05-08 01:22:23 +01:00
|
|
|
version = "0.2.0"
|
2023-12-29 05:31:04 +00:00
|
|
|
edition = "2021"
|
|
|
|
description = "Low-level hardware interfaces for Valve's Steam Deck"
|
2024-04-01 14:37:04 +01:00
|
|
|
authors = ["NGnius (Graham) <ngniusness@gmail.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://git.ngni.us/NGnius/smokepatio"
|
|
|
|
keywords = ["steam-deck", "hardware"]
|
|
|
|
readme = "README.md"
|
2023-12-29 05:31:04 +00:00
|
|
|
|
2024-01-09 02:56:06 +00:00
|
|
|
[features]
|
|
|
|
std = ["embedded-io/std"]
|
2024-01-11 00:41:22 +00:00
|
|
|
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" }
|
2024-01-11 00:41:22 +00:00
|
|
|
embedded-io-async = { version = "0.6", optional = true }
|