usdpl-rs/src/main.rs

17 lines
395 B
Rust
Raw Normal View History

2022-06-08 01:05:04 +01:00
//! 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!");
}