forked from project-oak/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (47 loc) · 1.17 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "oak_functions_launcher"
version = "0.1.0"
authors = ["Andri Saar <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow = "*"
async-stream = "*"
async-trait = "*"
bmrng = "*"
clap = { version = "*", features = ["derive"] }
command-fds = { version = "*", features = ["tokio"] }
futures = "*"
log = "*"
env_logger = "*"
prost = { workspace = true }
serde = "*"
tokio = { version = "*", features = [
"rt-multi-thread",
"macros",
"net",
"process",
"signal",
"sync",
] }
tonic = "*"
tonic-web = { version = "*", optional = true }
oak_functions_abi = { workspace = true }
oak_launcher_utils = { workspace = true }
micro_rpc = { workspace = true }
oak_channel = { workspace = true, features = ["client"] }
oak_crypto = { workspace = true }
oak_proto_rust = { workspace = true }
hashbrown = "*"
ubyte = "*"
[build-dependencies]
micro_rpc_build = { workspace = true }
oak_grpc_utils = { workspace = true }
[dev-dependencies]
oak_client = { workspace = true }
oak_crypto = { workspace = true }
oak_functions_client = { workspace = true }
oak_functions_test_utils = { workspace = true }
rand = "*"
xtask = { workspace = true }
which = "*"