├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── rust-toolchain └── src ├── lib.rs ├── with_actix.rs └── with_rocket.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plume-org/rocket_i18n/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plume-org/rocket_i18n/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plume-org/rocket_i18n/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plume-org/rocket_i18n/HEAD/README.md -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2019-08-09 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plume-org/rocket_i18n/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/with_actix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plume-org/rocket_i18n/HEAD/src/with_actix.rs -------------------------------------------------------------------------------- /src/with_rocket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plume-org/rocket_i18n/HEAD/src/with_rocket.rs --------------------------------------------------------------------------------