-
Notifications
You must be signed in to change notification settings - Fork 254
/
Cargo.toml
33 lines (29 loc) · 1.08 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
[package]
name = "shuttle-api-client"
version = "0.49.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "A library for interacting with the Shuttle platform API"
homepage = "https://www.shuttle.dev"
[dependencies]
shuttle-common = { workspace = true, features = ["models"] }
anyhow = { workspace = true }
async-trait = { workspace = true }
headers = { workspace = true }
http = { workspace = true }
percent-encoding = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
reqwest-middleware = "0.2.5"
rmp-serde = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "signal", "rt-multi-thread"] }
tokio-tungstenite = { workspace = true }
url = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
task-local-extensions = { version = "0.1.4", optional = true }
tracing = { workspace = true, features = ["default"], optional = true }
[features]
default = ["tracing"]
tracing = ["dep:tracing", "dep:task-local-extensions"]