-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.23 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 1.23 KB
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
[package]
name = "composable-http-server"
version.workspace = true
description = "HTTP Server for Composable Runtime"
edition.workspace = true
license.workspace = true
readme = "README.md"
repository.workspace = true
categories = ["wasm"]
keywords = ["wasm"]
[dependencies]
anyhow.workspace = true
clap = { workspace = true, optional = true }
composable-runtime = { version = "0.5.0-alpha.4", path = "../..", features = ["messaging"] }
form_urlencoded = "1"
http-body-util.workspace = true
hyper = { workspace = true, features = ["server", "http1"] }
hyper-util.workspace = true
jsonschema.workspace = true
opentelemetry.workspace = true
opentelemetry_sdk = { workspace = true, features = ["rt-tokio", "experimental_trace_batch_span_processor_with_async_runtime", "trace"] }
opentelemetry-otlp = { workspace = true, features = ["grpc-tonic", "http-proto", "reqwest-client", "trace"] }
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
uuid = { workspace = true }
[features]
default = ["cli"]
cli = ["dep:clap", "dep:tracing-subscriber"]
[[bin]]
name = "composable-http-server"
path = "src/main.rs"
required-features = ["cli"]