├── .gitignore ├── LICENSE ├── libuv-sys ├── Cargo.toml ├── build.rs └── src │ └── lib.rs ├── libuv ├── Cargo.toml └── src │ └── lib.rs └── thread-bound ├── Cargo.toml └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /libuv-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/libuv-sys/Cargo.toml -------------------------------------------------------------------------------- /libuv-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/libuv-sys/build.rs -------------------------------------------------------------------------------- /libuv-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/libuv-sys/src/lib.rs -------------------------------------------------------------------------------- /libuv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/libuv/Cargo.toml -------------------------------------------------------------------------------- /libuv/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/libuv/src/lib.rs -------------------------------------------------------------------------------- /thread-bound/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/thread-bound/Cargo.toml -------------------------------------------------------------------------------- /thread-bound/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorear/libuv-rs/HEAD/thread-bound/src/lib.rs --------------------------------------------------------------------------------