-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 1.46 KB
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
[package]
name = "cipherstash-dynamodb"
license-file = "LICENSE.md"
homepage = "https://cipherstash.com"
repository = "https://github.com/cipherstash/cipherstash-dynamodb"
documentation = "https://docs.rs/cipherstash-dynamodb"
readme = "README.md"
description = "CipherStash SDK for searchable, in-use encryption for DynamoDB"
version = "0.9.0-pre.4"
edition = "2021"
authors = ["CipherStash <info@cipherstash.com>"]
keywords = ["cryptography", "security", "databases", "encryption", "dynamodb"]
categories = ["cryptography", "database"]
[dependencies]
cipherstash-client = { version = "0.28.0" }
cipherstash-dynamodb-derive = { version = "0.8", path = "cipherstash-dynamodb-derive" }
aws-sdk-dynamodb = "1.106.0"
async-trait = "0.1.73"
log = "0.4.20"
itertools = "0.14"
thiserror = "2.0"
base64 = "0.22.1"
hex = "0.4.3"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
] }
miette = "7.2.0"
uuid = "1.10.0"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
serial_test = "3.2"
trybuild = "1.0.85"
aws-config = { version = "1.8.14", features = ["behavior-version-latest"] }
env_logger = "0.11"
serde_dynamo = { version = "4", features = ["aws-sdk-dynamodb+1"] }
serde_json = "1.0.117"
tracing-test = "0.2.5"
# So we can get backtraces in tests
miette = { version = "7.2.0", features = ["fancy"] }
chrono = "0.4.38"
[features]
default = ["tokio"]
tokio = ["cipherstash-client/tokio"]