├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── basic.rs ├── src ├── lib.rs ├── parser │ ├── conversions.rs │ └── mod.rs └── structs.rs └── tests ├── fixtures ├── Beckhoff_EK11xx.xml ├── Weidmueller_UR20_FBC.xml ├── Weidmueller_UR20_FBC_from_IgH.xml └── Weidmueller_UR20_IO.xml └── parse-xml.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/examples/basic.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/parser/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/src/parser/conversions.rs -------------------------------------------------------------------------------- /src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/src/parser/mod.rs -------------------------------------------------------------------------------- /src/structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/src/structs.rs -------------------------------------------------------------------------------- /tests/fixtures/Beckhoff_EK11xx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/tests/fixtures/Beckhoff_EK11xx.xml -------------------------------------------------------------------------------- /tests/fixtures/Weidmueller_UR20_FBC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/tests/fixtures/Weidmueller_UR20_FBC.xml -------------------------------------------------------------------------------- /tests/fixtures/Weidmueller_UR20_FBC_from_IgH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/tests/fixtures/Weidmueller_UR20_FBC_from_IgH.xml -------------------------------------------------------------------------------- /tests/fixtures/Weidmueller_UR20_IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/tests/fixtures/Weidmueller_UR20_IO.xml -------------------------------------------------------------------------------- /tests/parse-xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethercat-rs/ethercat-esi/HEAD/tests/parse-xml.rs --------------------------------------------------------------------------------