Skip to content

Commit 6aff91e

Browse files
authored
Merge pull request #77 from cipherstash/encrypt-with
Encrypt with
2 parents 2dc39e9 + 79f854e commit 6aff91e

36 files changed

+2800
-1183
lines changed

Cargo.lock

Lines changed: 180 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,21 @@ itertools = "0.11.0"
2323
thiserror = "1.0.50"
2424
base64 = "0.22.1"
2525
hex = "0.4.3"
26+
tracing = { version = "0.1", features = ["log"] }
27+
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"]}
28+
miette = "7.2.0"
2629

2730
[dev-dependencies]
2831
tokio = { version = "1", features = ["full"] }
2932
serial_test = "2.0.0"
3033
trybuild = "1.0.85"
31-
tracing = { version = "0.1", features = ["log"] }
32-
tracing-subscriber = { version = "0.3", default-features = false, features = [
33-
"fmt",
34-
] }
3534
aws-config = { version = "1.0.1", features = ["behavior-version-latest"] }
3635
env_logger = "0.10.0"
3736
serde_dynamo = { version = "4", features = ["aws-sdk-dynamodb+1"] }
3837
serde_json = "1.0.117"
38+
tracing-test = "0.2.5"
39+
# So we can get backtraces in tests
40+
miette = { version = "7.2.0", features = ["fancy"] }
3941

4042
[features]
4143
default = ["tokio"]

0 commit comments

Comments
 (0)