-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1.04 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
[package]
name = "cortexflow_identity"
version = "0.1.1"
edition = "2024"
description = "CortexFlow identity service package"
license = "Apache-2.0"
readme = "../../../../README.md"
documentation = "https://docs.cortexflow.org"
homepage = "https://docs.cortexflow.org"
repository = "https://github.com/CortexFlow/CortexBrain"
[features]
default = ["map-handlers", "struct", "enums"]
map-handlers = []
struct = []
enums = []
experimental = ["map-handlers", "struct", "enums"]
[dependencies]
aya = "0.13.1"
bytes = "1.11"
tokio = { version = "1.48.0", features = [
"rt",
"rt-multi-thread",
"signal",
"fs",
"time",
"macros",
] }
anyhow = "1.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
libc = "0.2.178"
bytemuck = { version = "1.23.0", features = ["derive"] }
bytemuck_derive = "1.10.1"
cortexbrain-common = { path = "../../../common" }
nix = { version = "0.30.1", features = ["net"] }
kube = { version = "2.0.1", features = ["client"] }
k8s-openapi = { version = "0.26.1", features = ["v1_34"] }