forked from RedisJSON/RedisJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (21 loc) · 828 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
[workspace]
members = [
"json_path",
"redis_json"
]
[workspace.dependencies]
ijson = { git="https://github.com/RedisJSON/ijson", rev="e0119ac74f6c4ee918718ee122c3948b74ebeba8", default_features=false}
serde_json = { version="1.0", features = ["unbounded_depth"]}
# DO NOT CHANGE to avoid security issues. This exact version
# specification is required for the second level dependencies
# to use exactly this version too, so that the dependencies of
# this project will not be able to compromise it.
serde = { version = "=1.0.171", features = ["derive"] }
serde_derive = "=1.0.171"
bson = "0.14"
[workspace.package]
edition = "2021"
repository = "https://github.com/RedisJSON/RedisJSON"
license = "Redis Source Available License 2.0 (RSALv2) or the Server Side Public License v1 (SSPLv1)"
[profile.release]
debug = 1