usdpl-rs/src/main.rs

21 lines
551 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
//! - [x] Minimum viable plugin
//! - [x] Call back-end API from front-end UI
//! - [x] External API documentation
//! - [ ] Internal API documentation
//! - [x] Async support
//! - [ ] Sync support
2022-06-08 01:05:04 +01:00
//! - [ ] PluginLoader/Decky support
//! - [ ] Crankshaft support
//! - [ ] Unnamed plugin system support
//! - [ ] Cross-framework tooling
//! - [ ] Other programming languages support (C bindings)
2022-06-08 01:05:04 +01:00
//!
fn main() {
println!("Hello, USDPL!");
}