├── .circleci └── config.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── lib.rs ├── native.rs └── wasm.rs └── tests └── wasm.rs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/native.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/src/native.rs -------------------------------------------------------------------------------- /src/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/src/wasm.rs -------------------------------------------------------------------------------- /tests/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcrozet/instant/HEAD/tests/wasm.rs --------------------------------------------------------------------------------