├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── circle.yml ├── src ├── accepts.rs ├── composites.rs ├── enums.rs ├── fromsql.rs ├── lib.rs ├── overrides.rs └── tosql.rs └── tests ├── composites.rs ├── domains.rs ├── enums.rs └── util └── mod.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/circle.yml -------------------------------------------------------------------------------- /src/accepts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/src/accepts.rs -------------------------------------------------------------------------------- /src/composites.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/src/composites.rs -------------------------------------------------------------------------------- /src/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/src/enums.rs -------------------------------------------------------------------------------- /src/fromsql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/src/fromsql.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/overrides.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/src/overrides.rs -------------------------------------------------------------------------------- /src/tosql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/src/tosql.rs -------------------------------------------------------------------------------- /tests/composites.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/tests/composites.rs -------------------------------------------------------------------------------- /tests/domains.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/tests/domains.rs -------------------------------------------------------------------------------- /tests/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/tests/enums.rs -------------------------------------------------------------------------------- /tests/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/rust-postgres-derive/HEAD/tests/util/mod.rs --------------------------------------------------------------------------------