usdpl-rs/src/main.rs

22 lines
588 B
Rust
Raw Permalink Normal View History

2022-06-08 01:05:04 +01:00
//! Universal Steam Deck Plugin Library
//!
2022-06-21 01:03:18 +01:00
//! A faster, safer way to write plugin back-ends
2022-06-08 01:05:04 +01:00
//!
//! ## Goals
//! - [x] Minimum viable plugin
//! - [x] Call back-end API from front-end UI
//! - [x] External API documentation
2022-06-21 01:03:18 +01:00
//! - [ ] Internal protocol documentation
//! - [x] Async support
2022-06-21 01:03:18 +01:00
//! - [ ] Encryption
//! - [ ] Plugin templates
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!");
}