-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (31 loc) · 994 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
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "restate-sdk-shared-core"
version = "0.1.0"
edition = "2021"
description = "SDK Shared core"
license = "MIT"
repository = "https://github.com/restatedev/sdk-shared-core"
[features]
default = []
request_identity = ["dep:ring", "dep:sha2", "dep:jsonwebtoken", "dep:bs58"]
sha2_random_seed = ["dep:sha2"]
[dependencies]
thiserror = "1.0.64"
prost = "0.13.2"
bytes = "1.6"
bytes-utils = "0.1.4"
tracing = "0.1.40"
paste = "1.0.15"
strum = { version = "0.26", features = ["derive"] }
base64 = "0.22"
serde = { version = "1.0.204", features = ["derive"] }
sha2 = { version = "0.11.0-pre.3", optional = true }
bs58 = { version = "0.5.1", optional = true }
ring = { version = "0.17.8", optional = true }
jsonwebtoken = { version = "9.3.0", optional = true }
http = { version = "1.1.0", optional = true }
[dev-dependencies]
googletest = "0.11.0"
test-log = { version = "0.2.16", default-features = false, features = ["trace", "color"] }
assert2 = "0.3.14"
prost-build = "=0.13.3"