├── .gitignore ├── Cargo.toml ├── DDPSPEC.md ├── LICENSE ├── README.md ├── examples ├── consoleserver.rs ├── dev.rs └── longstrip.rs ├── proptest-regressions └── packet.txt └── src ├── connection.rs ├── error.rs ├── lib.rs ├── packet.rs ├── protocol ├── id.rs ├── message.rs ├── mod.rs ├── packet_type.rs ├── pixel_config.rs └── timecode.rs └── testing.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | .vscode/ 4 | .idea/ -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /DDPSPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/DDPSPEC.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/consoleserver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/examples/consoleserver.rs -------------------------------------------------------------------------------- /examples/dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/examples/dev.rs -------------------------------------------------------------------------------- /examples/longstrip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/examples/longstrip.rs -------------------------------------------------------------------------------- /proptest-regressions/packet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/proptest-regressions/packet.txt -------------------------------------------------------------------------------- /src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/connection.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/packet.rs -------------------------------------------------------------------------------- /src/protocol/id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/protocol/id.rs -------------------------------------------------------------------------------- /src/protocol/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/protocol/message.rs -------------------------------------------------------------------------------- /src/protocol/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/protocol/mod.rs -------------------------------------------------------------------------------- /src/protocol/packet_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/protocol/packet_type.rs -------------------------------------------------------------------------------- /src/protocol/pixel_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/protocol/pixel_config.rs -------------------------------------------------------------------------------- /src/protocol/timecode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/protocol/timecode.rs -------------------------------------------------------------------------------- /src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral/ddp-rs/HEAD/src/testing.rs --------------------------------------------------------------------------------