-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 799 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 799 Bytes
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
[package]
name = "ko-driver"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.1", features = ["cargo"] }
ko-config = { path = "./config" }
ko-context = { path = "./context" }
ko-context-assembler = { path = "./context/assembler" }
ko-context-driver = { path = "./context/driver" }
ko-context-executor = { path = "./context/executor" }
ko-protocol = { path = "./protocol" }
ko-backend = { path = "./backend" }
ko-rpc = { path = "./rpc" }
ko-rpc-client = { path = "./rpc/client" }
[workspace]
members = [
"context",
"context/assembler",
"context/driver",
"context/executor",
"backend",
"protocol",
"rpc",
"rpc/client",
"rpc/server",
]