17 lines
395 B
Rust
17 lines
395 B
Rust
|
//! Universal Steam Deck Plugin Library
|
||
|
//!
|
||
|
//! A faster, lighter way to write plugins
|
||
|
//!
|
||
|
//! ## Goals
|
||
|
//! - [ ] Minimum viable plugin
|
||
|
//! - [ ] Call back-end API from front-end UI
|
||
|
//! - [ ] Async support
|
||
|
//! - [ ] PluginLoader/Decky support
|
||
|
//! - [ ] Crankshaft support
|
||
|
//! - [ ] Unnamed plugin system support
|
||
|
//! - [ ] Cross-framework tooling
|
||
|
//!
|
||
|
fn main() {
|
||
|
println!("Hello, USDPL!");
|
||
|
}
|