-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (27 loc) · 815 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
[package]
name = "redisgraphio"
version = "0.2.0"
description = "Client library for working with redis graph"
license = "MIT"
keywords = ["redis", "database", "redisgraph"]
categories = ["database-implementations", "database"]
homepage = "https://github.com/redis-rs/redis-rs"
repository = "https://github.com/Threated/redisgraphio"
documentation = "https://docs.rs/redisgraphio"
readme = "README.md"
edition = "2021"
[dependencies]
redis = { version = "0.*", optional = true }
indexmap = "1.0"
[dev-dependencies]
paste = "1.0"
tokio = { version = "1", features = ["rt"] }
async-std = "1.6.0"
[features]
default = ['redis']
tokio-comp = ['redis/tokio-comp']
async-std-comp = ['redis/async-std-comp']
[[test]]
name = "Tests"
path = "./src/tests.rs"
required-features = ["redis/tokio-comp, redis/async-std-comp"]