-
Notifications
You must be signed in to change notification settings - Fork 332
/
Copy pathCargo.toml
34 lines (31 loc) · 1.03 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
[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"
[dependencies]
bitflags = "2"
bson.workspace = true
ijson.workspace = true
serde_json.workspace = true
serde.workspace = true
libc = "0.2"
redis-module ={ git="https://github.com/RedisLabsModules/redismodule-rs", tag="v2.1.2", default-features = false, features = ["min-redis-compatibility-version-7-4"] }
redis-module-macros = { git="https://github.com/RedisLabsModules/redismodule-rs", tag="v2.1.2" }
itertools = "0.13"
json_path = {path="../json_path"}
linkme = "0.3"
lazy_static = "1"
[features]
as-library = []
thread_safe = ["ijson/thread_safe"]