forked from sagiegurari/simple_redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·44 lines (39 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "simple_redis"
version = "0.3.44"
authors = ["Sagie Gur-Ari <[email protected]>"]
description = "Simple and resilient redis client."
license = "Apache-2.0"
documentation = "https://sagiegurari.github.io/simple_redis/api/simple_redis/index.html"
homepage = "http://github.com/sagiegurari/simple_redis"
repository = "https://github.com/sagiegurari/simple_redis.git"
readme = "README.md"
keywords = ["redis", "cache", "pubsub", "database"]
categories = ["caching", "database"]
include = [
"/benches/*",
"/docs/*",
"/examples/*",
"/src/*",
"/tests/*",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/Makefile.toml"
]
[dependencies]
redis = "^0.8.0"
[features]
default = []
[badges.travis-ci]
branch = "master"
repository = "sagiegurari/simple_redis"
[badges.appveyor]
repository = "sagiegurari/simple_redis"
service = "github"
branch = "master"
project_name = "sagiegurari/simple-redis"
[badges.codecov]
branch = "master"
repository = "sagiegurari/simple_redis"
service = "github"