├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── prime_numbers.rs ├── src └── lib.rs └── tests └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndanos/asynchronous/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | os: 2 | - linux 3 | language: rust -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndanos/asynchronous/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndanos/asynchronous/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndanos/asynchronous/HEAD/README.md -------------------------------------------------------------------------------- /examples/prime_numbers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndanos/asynchronous/HEAD/examples/prime_numbers.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndanos/asynchronous/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndanos/asynchronous/HEAD/tests/lib.rs --------------------------------------------------------------------------------