forked from agntcy/slim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 1.41 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (39 loc) · 1.41 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
[package]
name = "agntcy-slim-channel-manager"
version = "0.1.0"
edition.workspace = true
license.workspace = true
description = "Channel Manager for SLIM - manages channels and participants via gRPC"
repository = "https://github.com/agntcy/slim"
[[bin]]
name = "channel-manager"
path = "src/bin/channel_manager.rs"
[[bin]]
name = "cmctl"
path = "src/bin/cmctl.rs"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
agntcy-slim-auth = { workspace = true }
agntcy-slim-config = { workspace = true }
agntcy-slim-datapath = { workspace = true }
agntcy-slim-proto = { workspace = true }
agntcy-slim-service = { workspace = true, features = ["session"] }
agntcy-slim-session = { workspace = true }
agntcy-slim-signal = { workspace = true }
agntcy-slim-tracing = { workspace = true }
anyhow = { workspace = true }
clap = { workspace = true }
prost = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_yaml = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tonic = { workspace = true }
tonic-prost = { workspace = true }
tracing = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
agntcy-slim = { workspace = true }
agntcy-slim-config = { workspace = true }
agntcy-slim-datapath = { workspace = true }
agntcy-slim-testing = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tonic = { workspace = true }