-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (55 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
70 lines (55 loc) · 1.46 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
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
[package]
name = "rama-grpc-examples"
description = "examples for rama's grpc capabilities"
version = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
publish = false
[package.metadata.cargo-public-api-crates]
allowed = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
name = "rama_grpc_examples"
path = "src/shared/lib.rs"
[[bin]]
name = "helloworld-client"
path = "src/helloworld/client.rs"
[[bin]]
name = "helloworld-server"
path = "src/helloworld/server.rs"
[[bin]]
name = "gcp-pubsub-client"
path = "src/gcp/pubsub_client.rs"
[[bin]]
name = "compression-server"
path = "src/compression/server.rs"
[[bin]]
name = "compression-client"
path = "src/compression/client.rs"
[[bin]]
name = "health-server"
path = "src/health/server.rs"
[[bin]]
name = "otel-exporter"
path = "src/otel_exporter.rs"
required-features = ["opentelemetry"]
[features]
opentelemetry = ["rama/opentelemetry"]
[dependencies]
base64 = { workspace = true }
rama = { workspace = true, features = ["grpc-full"] }
tokio = { workspace = true, features = ["full"] }
[build-dependencies]
rama = { workspace = true, features = ["grpc"] }
[dev-dependencies]
pin-project-lite = { workspace = true }
static_assertions = { workspace = true }
tracing-test = { workspace = true }
trybuild = { workspace = true }
[lints.rustdoc]
all = "allow"