-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.09 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
[package]
name = "cortexflow_agent_api"
version = "0.1.1-beta.2"
edition = "2021"
description = "CortexFlow agent API"
authors = ["Lorenzo Tettamanti", "Pranav Verma", "Lorenzo Bradanini","Siddharth Sutar","Andrea Bozzo"]
documentation = "https://docs.cortexflow.org"
homepage = "https://docs.cortexflow.org"
repository = "https://github.com/CortexFlow/CortexBrain"
license = "Apache-2.0"
readme = "../../README.md"
[features]
default = ["client"]
client = []
[dependencies]
anyhow = "1.0.98"
prost = "0.14.1"
tokio = { version = "1.47.0", features = ["full"] }
tonic = "0.14.0"
tonic-prost = "0.14.0"
tracing = "0.1.44"
aya = "0.13.1"
cortexbrain-common = { path = "../common" }
tonic-reflection = "0.14.0"
tonic-build = "0.14.0"
tracing-subscriber = "0.3.22"
tokio-stream = "0.1.17"
bytemuck = {version ="1.23.0"}
bytemuck_derive = "1.10.1"
cortexflow_identity = {path = "../src/components/identity", features = ["enums"]}
chrono = "0.4.42"
[build-dependencies]
tonic-build = "0.14.0"
tonic-prost-build = "0.14.0"
[lib]
name = "agent_api"
path = "src/lib.rs"
[[bin]]
name = "agent-api"
path = "src/main.rs"