parade-rs 1.1.0

Rust rewrite of Parade - an experimental interactive-fiction playground / filesystem / operating system?
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![warn(missing_docs)]
//! Parade-rs is a CLI-based rewrite of [Parade](https://git.sr.ht/~rabbits/parade), and a library to support other such implementations.
//!
#![doc = include_str!("../README.md")]

/// Action parsing and handling utilities.
pub mod action;
/// The looping tree-like data struture.
pub mod tree;
/// The [vessel::Vessel] object-type.
pub mod vessel;