├── .gitignore ├── .travis.yml ├── CHANGES.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── basic.rs ├── rustfmt.toml ├── src ├── lib.rs ├── redis.rs └── session.rs └── tests └── test_redis.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/examples/basic.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 89 2 | reorder_imports = true 3 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/src/redis.rs -------------------------------------------------------------------------------- /src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/src/session.rs -------------------------------------------------------------------------------- /tests/test_redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actix/actix-redis/HEAD/tests/test_redis.rs --------------------------------------------------------------------------------