-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
37 lines (31 loc) · 940 Bytes
/
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
[package]
name = "redis-graph"
version = "0.4.4"
authors = ["tompro <[email protected]>"]
keywords = ["redis", "database", "graph"]
description = "API for Redis graph database types."
homepage = "https://github.com/tompro/redis_graph"
repository = "https://github.com/tompro/redis_graph"
documentation = "https://docs.rs/redis_graph"
license = "BSD-3-Clause"
readme = "README.md"
edition = "2018"
exclude = ["docker"]
[dependencies]
redis = { version = "^0.23.0", optional = true }
[features]
default = ['redis']
tokio-comp = ['redis/tokio-comp']
async-std-comp = ['redis/async-std-comp']
[dev-dependencies]
tokio = { version = "1", features = ["rt"] }
futures = "0.3.5"
async-std = { version = "1.8.0", features = ["tokio1"] }
[[test]]
name = "test_async_std_commands"
required-features = ['async-std-comp']
[[test]]
name = "test_async_tokio_commands"
required-features = ['tokio-comp']
[package.metadata.docs.rs]
all-features = true