├── .github └── workflows │ └── main.yml ├── .gitignore ├── .rustfmt.toml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── adstool.rs ├── notify.rs ├── timing.rs ├── timing_server.rs └── values_via_handle.rs ├── rust-toolchain └── src ├── client.rs ├── errors.rs ├── file.rs ├── index.rs ├── lib.rs ├── netid.rs ├── notif.rs ├── ports.rs ├── strings.rs ├── symbol.rs ├── test ├── mod.rs ├── test_client.rs ├── test_netid.rs └── test_udp.rs └── udp.rs /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/adstool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/examples/adstool.rs -------------------------------------------------------------------------------- /examples/notify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/examples/notify.rs -------------------------------------------------------------------------------- /examples/timing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/examples/timing.rs -------------------------------------------------------------------------------- /examples/timing_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/examples/timing_server.rs -------------------------------------------------------------------------------- /examples/values_via_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/examples/values_via_handle.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.63.0 2 | -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/file.rs -------------------------------------------------------------------------------- /src/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/index.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/netid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/netid.rs -------------------------------------------------------------------------------- /src/notif.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/notif.rs -------------------------------------------------------------------------------- /src/ports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/ports.rs -------------------------------------------------------------------------------- /src/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/strings.rs -------------------------------------------------------------------------------- /src/symbol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/symbol.rs -------------------------------------------------------------------------------- /src/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/test/mod.rs -------------------------------------------------------------------------------- /src/test/test_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/test/test_client.rs -------------------------------------------------------------------------------- /src/test/test_netid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/test/test_netid.rs -------------------------------------------------------------------------------- /src/test/test_udp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/test/test_udp.rs -------------------------------------------------------------------------------- /src/udp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkenfeld/ads-rs/HEAD/src/udp.rs --------------------------------------------------------------------------------