-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (67 loc) · 1.6 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
68
69
70
71
72
[workspace]
members = [
"crates/api",
"crates/client",
"crates/core",
"crates/derive",
"crates/openapi",
"crates/sdk",
"crates/service-protocol",
"crates/types",
"crates/utils",
"examples"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["restate.dev"]
edition = "2021"
rust-version = "1.75"
license = "MIT OR Apache-2.0"
repository = "https://github.com/restatedev/sdk-rust"
description = "Restate Rust SDK"
[workspace.dependencies]
anyhow = "1.0"
base64 = "0.22"
bytes = { version = "1.6", features = ["serde"] }
bytes-utils = "0.1.4"
bytestring = { version = "1.3", features = ["serde"] }
dashmap = "6.0.1"
derive_builder = "0.20.0"
derive_more = { version = "1", features = ["full"] }
derive-new = "0.7.0"
futures = "0.3"
futures-util = "0.3"
h2 = "0.4.5"
http = "1.1"
http-body = "1.0"
http-body-util = "0.1"
hyper = "1.4.1"
hyper-util = "0.1.6"
itertools = "0.13.0"
opentelemetry = { version = "0.27.0", features = ["trace"] }
parking_lot = { version = "0.12" }
pin-project = { version = "1.1.5" }
prost = "0.13.1"
prost-types = "0.13.1"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.120"
thiserror = "2.0.3"
time = "0.3.36"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.15"
tokio-util = { version = "0.7.11", features = ["full"] }
tokio-test = { version = "0.4.4" }
tracing = "0.1"
tracing-futures = "0.2"
tracing-opentelemetry = "0.28.0"
url = "2.5.2"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
missing_docs = "warn"
[profile.release]
strip = true
incremental = true
panic = "abort"