# osc-types10
> **⚠ Experimental / Not recommended for production use**
[](https://crates.io/crates/osc-types10)
[](https://docs.rs/osc-types10)

Implementation of **Open Sound Control 1.0** message and bundle types for Rust.
This crate is part of the [`rust-osc-types`](https://github.com/Nagitch/rust-osc-types) workspace.
## ⚠ Stability Notice
- Experimental and under development.
- Breaking changes may occur until 1.0.0.
- Intended for research and testing.
## Example
```toml
osc-types10 = "=0.1.0-alpha.1"
```
```rust
use osc_types10::Message;
let msg = Message::new("/example", vec!["test".into()]);
println!("{msg:?}");
```
## License
Dual licensed under MIT OR Apache-2.0.