├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── RustConfig ├── assets └── crates-io-demo.gif ├── docs ├── index.css ├── index.html ├── va9B4kDNxMZdWfMOD5VnLK3eRhf6Xl7Glw.woff2 ├── va9B4kDNxMZdWfMOD5VnPKreRhf6Xl7Glw.woff2 └── va9E4kDNxMZdWfMOD5Vvl4jLazX3dA.woff2 ├── run.sh └── src ├── backoff.rs ├── bin ├── full_init.rs ├── full_update.rs └── live.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | *.out 4 | crates.io-index 5 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/README.md -------------------------------------------------------------------------------- /RustConfig: -------------------------------------------------------------------------------- 1 | VERSION=nightly 2 | -------------------------------------------------------------------------------- /assets/crates-io-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/assets/crates-io-demo.gif -------------------------------------------------------------------------------- /docs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/docs/index.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/va9B4kDNxMZdWfMOD5VnLK3eRhf6Xl7Glw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/docs/va9B4kDNxMZdWfMOD5VnLK3eRhf6Xl7Glw.woff2 -------------------------------------------------------------------------------- /docs/va9B4kDNxMZdWfMOD5VnPKreRhf6Xl7Glw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/docs/va9B4kDNxMZdWfMOD5VnPKreRhf6Xl7Glw.woff2 -------------------------------------------------------------------------------- /docs/va9E4kDNxMZdWfMOD5Vvl4jLazX3dA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/docs/va9E4kDNxMZdWfMOD5Vvl4jLazX3dA.woff2 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/run.sh -------------------------------------------------------------------------------- /src/backoff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/src/backoff.rs -------------------------------------------------------------------------------- /src/bin/full_init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/src/bin/full_init.rs -------------------------------------------------------------------------------- /src/bin/full_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/src/bin/full_update.rs -------------------------------------------------------------------------------- /src/bin/live.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/src/bin/live.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/demo-finding-crates/HEAD/src/lib.rs --------------------------------------------------------------------------------