-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (80 loc) · 2.09 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
members = [
"crates/compute_unit_runner",
"crates/jiaozifs_client_rs",
"nodes/jz_reader",
"nodes/jz_writer",
"nodes/make_article",
"nodes/list_files",
"nodes/copy_in_place",
"crates/nodes_sdk"]
[workspace.package]
repository = "https://github.com/GitDataAI/jiaoziflow"
license = "MIT OR Apache-2.0"
edition = "2021"
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
]
[workspace.dependencies]
anyhow = "1.0.86"
tracing = "0.1.40"
tracing-subscriber = "0.3"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
tokio-retry = "0.3"
tokio-stream = "0.1.15"
tokio-util = "0.7.11"
tonic = "0.12.1"
serde_json = {version = "1.0.117"}
serde = {version ="1.0.203", features = ["derive"]}
uuid = {version="1.8.0", features = ["v4","serde"]}
mongodb = {version="3.0.1"}
chrono = "0.4"
async-trait = "0.1.81"
futures = "0.3.30"
clap = {version="4.5.7", features=["derive"]}
actix-web = "4.8.0"
reqwest = {version="0.12.5", features=["json"]}
itertools = "0.13.0"
[package]
name = "jiaoziflow"
version = "0.1.0"
edition = "2021"
[dependencies]
kube = { version = "0.93.1", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.22.0", features = ["latest"] }
handlebars = "6.0.0"
prost = "0.13.1"
serde_variant = "0.1.3"
uri="0.4.0"
prettytable-rs = "^0.10"
k8s-metrics = "0.16.0"
hostname = "^0.4"
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
tokio-retry = {workspace = true}
tokio-stream = {workspace = true}
tokio-util= {workspace = true}
actix-web = {workspace = true}
clap = {workspace = true}
uuid = {workspace = true}
anyhow = {workspace = true}
tracing = {workspace = true}
tracing-subscriber = {workspace = true}
tonic = {workspace = true}
serde = {workspace = true}
serde_json = {workspace = true}
mongodb = {workspace = true}
chrono = {workspace = true}
futures = {workspace = true}
async-trait = {workspace = true}
reqwest = {workspace = true}
itertools = {workspace = true}
[build-dependencies]
tonic-build = "0.12.1"
log= "0.4.21"
env_logger="0.11.3"
[dev-dependencies]
local-ip-address = "0.6.1"