-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (45 loc) · 1.44 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
[package]
name = "restate-sdk"
version = "0.3.0"
edition = "2021"
description = "Restate SDK for Rust"
license = "MIT"
repository = "https://github.com/restatedev/sdk-rust"
rust-version = "1.76.0"
[features]
default = ["http_server", "rand", "uuid"]
hyper = ["dep:hyper", "http-body-util", "restate-sdk-shared-core/http"]
http_server = ["hyper", "hyper/server", "hyper/http2", "hyper-util", "tokio/net", "tokio/signal", "tokio/macros"]
[dependencies]
bytes = "1.6.1"
futures = "0.3"
http = "1.1.0"
http-body-util = { version = "0.1", optional = true }
hyper = { version = "1.4.1", optional = true}
hyper-util = { version = "0.1", features = ["tokio", "server", "server-graceful", "http2"], optional = true }
pin-project-lite = "0.2"
rand = { version = "0.8.5", optional = true }
regress = "0.10"
restate-sdk-macros = { version = "0.3.0", path = "macros" }
restate-sdk-shared-core = "0.1.0"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0.63"
tokio = { version = "1", default-features = false, features = ["sync"] }
tower-service = "0.3"
tracing = "0.1"
uuid = { version = "1.10.0", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
tracing-subscriber = "0.3"
trybuild = "1.0"
reqwest = { version = "0.12", features = ["json"] }
rand = "0.8.5"
[build-dependencies]
jsonptr = "0.5.1"
prettyplease = "0.2"
serde_json = { version = "1.0" }
syn = "2.0"
typify = { version = "0.1.0" }
[workspace]
members = ["macros", "test-services"]