├── .github └── workflows │ └── rust.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── ctp-common ├── Cargo.toml ├── generate.rs └── src │ ├── binding.rs │ ├── generated │ ├── error.rs.in │ └── struct.rs.in │ └── lib.rs ├── ctp-md ├── Cargo.toml ├── build.rs ├── examples │ └── api-md.rs ├── src │ ├── channel.rs │ └── lib.rs └── test_all.sh └── ctp-trader ├── Cargo.toml ├── build.rs ├── examples ├── api-trader.rs └── password_update.rs ├── src ├── channel.rs └── lib.rs └── test_all.sh /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/README.md -------------------------------------------------------------------------------- /ctp-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-common/Cargo.toml -------------------------------------------------------------------------------- /ctp-common/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-common/generate.rs -------------------------------------------------------------------------------- /ctp-common/src/binding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-common/src/binding.rs -------------------------------------------------------------------------------- /ctp-common/src/generated/error.rs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-common/src/generated/error.rs.in -------------------------------------------------------------------------------- /ctp-common/src/generated/struct.rs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-common/src/generated/struct.rs.in -------------------------------------------------------------------------------- /ctp-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-common/src/lib.rs -------------------------------------------------------------------------------- /ctp-md/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-md/Cargo.toml -------------------------------------------------------------------------------- /ctp-md/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-md/build.rs -------------------------------------------------------------------------------- /ctp-md/examples/api-md.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-md/examples/api-md.rs -------------------------------------------------------------------------------- /ctp-md/src/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-md/src/channel.rs -------------------------------------------------------------------------------- /ctp-md/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-md/src/lib.rs -------------------------------------------------------------------------------- /ctp-md/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-md/test_all.sh -------------------------------------------------------------------------------- /ctp-trader/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-trader/Cargo.toml -------------------------------------------------------------------------------- /ctp-trader/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-trader/build.rs -------------------------------------------------------------------------------- /ctp-trader/examples/api-trader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-trader/examples/api-trader.rs -------------------------------------------------------------------------------- /ctp-trader/examples/password_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-trader/examples/password_update.rs -------------------------------------------------------------------------------- /ctp-trader/src/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-trader/src/channel.rs -------------------------------------------------------------------------------- /ctp-trader/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-trader/src/lib.rs -------------------------------------------------------------------------------- /ctp-trader/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiSaGaN/ctp-rs/HEAD/ctp-trader/test_all.sh --------------------------------------------------------------------------------