-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
67 lines (58 loc) · 1.58 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "cosmian_findex"
version = "6.0.0"
authors = [
"Chloé Hébant <[email protected]>",
"Bruno Grieder <[email protected]>",
"Célia Corsin <[email protected]>",
"Emmanuel Coste <[email protected]>",
"Théophile Brézot <[email protected]>",
]
categories = ["cosmian::crypto"]
edition = "2021"
keywords = ["SSE"]
license-file = "LICENSE.md"
repository = "https://github.com/Cosmian/findex/"
description = "Symmetric Searchable Encryption"
[lib]
crate-type = ["cdylib", "lib", "staticlib"]
name = "cosmian_findex"
path = "src/lib.rs"
[features]
in_memory = ["cosmian_crypto_core/ser"]
[dependencies]
# Once available in stable Rust (presumably 1.74), use std async fn in trait
# <https://rust-lang.github.io/rfcs/3185-static-async-fn-in-trait.html>
async-trait = "0.1.74"
base64 = "0.21.5"
cosmian_crypto_core = { version = "9.3.0", default-features = false, features = [
"aes",
"sha3",
] }
# Once available in stable Rust, use `!` std primitive
# <https://doc.rust-lang.org/std/primitive.never.html>
never = "0.1.0"
tiny-keccak = { version = "2.0.2", features = ["kmac", "sha3"] }
tracing = "0.1"
zeroize = "1.7.0"
[dev-dependencies]
actix-rt = "2.9.0"
criterion = "0.5.1"
futures = "0.3.29"
rand = "0.8.5"
[[bench]]
harness = false
name = "benches"
required-features = ["in_memory"]
[[test]]
name = "test_in_memory"
required-features = ["in_memory"]
[[test]]
name = "non_regression"
required-features = ["in_memory"]
[[example]]
name = "search"
required-features = ["in_memory"]
[[example]]
name = "upsert"
required-features = ["in_memory"]