-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
140 lines (130 loc) · 3.16 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[workspace]
members = ["automate", "openapi", "openapi-derive", "migration"]
[package]
name = "jiascheduler"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
[[bin]]
name = "jiascheduler-console"
path = "src/bin/console.rs"
[[bin]]
name = "jiascheduler-agent"
path = "src/bin/agent.rs"
[[bin]]
name = "jiascheduler-comet"
path = "src/bin/comet.rs"
[dependencies]
poem.workspace = true
clap.workspace = true
futures-util.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tokio-tungstenite.workspace = true
url.workspace = true
anyhow.workspace = true
local-ip-address.workspace = true
moka.workspace = true
serde_json.workspace = true
bytes.workspace = true
serde.workspace = true
file-rotate.workspace = true
tokio.workspace = true
tokio-nsq.workspace = true
cron.workspace = true
nanoid.workspace = true
redis.workspace = true
futures.workspace = true
redis-macros.workspace = true
tokio-cron-scheduler.workspace = true
uuid.workspace = true
automate.workspace = true
openapi.workspace = true
watchexec-supervisor.workspace = true
terminal-keycode = "1.1.1"
[workspace.dependencies]
# diesel = { version = "2.1.4", features = ["mysql"] }
poem = { version = "3.1.1", features = [
"anyhow",
"redis-session",
"websocket",
"embed",
"static-files",
] }
poem-openapi = { version = "5.1.1", features = ["rapidoc"] }
tokio = { version = "1.35.0", features = ["full"] }
clap = { version = "4.5.17", features = ["derive"] }
futures-util = "0.3.29"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tokio-tungstenite = "0.23.1"
url = "2.5.0"
anyhow = "1.0.75"
local-ip-address = "0.6.1"
moka = { version = "0.12.1", features = ["future"] }
serde_json = "1.0.108"
bytes = "1.5.0"
serde = "1.0.193"
file-rotate = "0.7.5"
openapi-derive = { path = "openapi-derive" }
redis = { version = "0.27", features = [
"json",
"aio",
"tokio-comp",
"connection-manager",
] }
sea-orm = { version = "1.0.0", features = [
"macros",
"with-json",
"with-chrono",
"with-rust_decimal",
"with-bigdecimal",
"with-uuid",
"with-time",
"sqlx-mysql",
"runtime-tokio-native-tls",
"debug-print",
# "runtime-tokio-rustls",
] }
syn = "2.0.48"
quote = "1.0.35"
proc-macro2 = "1.0.76"
thiserror = "1.0.56"
tokio-nsq = "0.14.0"
cron = "0.12.0"
tokio-cron-scheduler = "0.13.0"
nanoid = "0.4.0"
uuid = "*"
futures = "*"
serde_repr = "0.1.18"
russh = "0.44.0"
russh-sftp = "2.0.1"
russh-keys = "0.44.0"
termion = "*"
redis-macros = "0.4.0"
config = "*"
chrono = { version = "0.4.38", features = ["serde"] }
rust-crypto = "*"
automate = { path = "automate" }
openapi = { path = "openapi" }
migration = { path = "migration" }
sea-query = "*"
rust-embed = "*"
reqwest = { version = "*", features = ["json"] }
evalexpr = "^11.3.0"
watchexec-supervisor = "*"
sea-orm-adapter = "0.4.0"
simple_crypt = "*"
rustc-serialize = "0.3.25"
async-trait = "0.1.81"
toml = "0.8.19"
shellexpand = "3.1.0"
git-version = "0.3.9"
users = "0.11.0"
rand = "0.8.5"
http = "1.1.0"
sql-builder = "3.1.1"
mac_address = "1.1.7"
nix = { version = "0.29.0", features = ["signal"] }