├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── bodyparser.rs └── src ├── errors.rs ├── lib.rs └── limit_reader.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/README.md -------------------------------------------------------------------------------- /examples/bodyparser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/examples/bodyparser.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/limit_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/body-parser/HEAD/src/limit_reader.rs --------------------------------------------------------------------------------