forked from RedisJSON/RedisJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 822 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
[package]
name = "redis_json"
version = "99.99.99"
authors = ["Guy Korland <guy.korland@redis.com>", "Meir Shpilraien <meir@redis.com>", "Omer Shadmi <omer.shadmi@redis.com>"]
edition.workspace = true
description = "JSON data type for Redis"
repository.workspace = true
readme = "README.md"
license.workspace = true
keywords = ["redis", "json", "plugin"]
categories = ["database-implementations"]
homepage = "https://redis.io/docs/stack/json/"
[lib]
crate-type = ["cdylib", "rlib"]
name = "rejson"
[dev-dependencies]
env_logger = "0.10.0"
[dependencies]
bitflags = "1.3"
bson.workspace = true
ijson.workspace = true
serde_json.workspace = true
serde.workspace = true
libc = "0.2"
redis-module = "2.0"
itertools = "0.10"
json_path = {path="../json_path"}
[features]
as-library = []
thread_safe = ["ijson/thread_safe"]