├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── assert.rs ├── configure.rs ├── de.rs ├── error.rs ├── lib.rs ├── ser.rs └── token.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/README.md -------------------------------------------------------------------------------- /src/assert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/src/assert.rs -------------------------------------------------------------------------------- /src/configure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/src/configure.rs -------------------------------------------------------------------------------- /src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/src/de.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/src/ser.rs -------------------------------------------------------------------------------- /src/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serde-deprecated/test/HEAD/src/token.rs --------------------------------------------------------------------------------