-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (65 loc) · 1.48 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
[package]
name = "transmit"
version = "0.1.1"
edition = "2021"
authors = ["Kas Buunk"]
repository = "https://github.com/kasbuunk/transmit"
homepage = "https://github.com/kasbuunk/transmit"
description = "Transmission scheduler of delayed and periodic messages."
license-file = "LICENSE"
readme = "README.md"
keywords = ["transmit", "scheduler"]
[dependencies]
async-nats = "0.33.0"
async-stream = "0.3.5"
async-trait = "0.1.77"
bytes = "1.5.0"
chrono = { version = "0.4.34", features = ["serde"] }
cron = "0.12.0"
env_logger = "0.11.1"
futures = "0.3.30"
futures-util = "0.3.30"
http-body-util = "0.1.0"
humantime = "2.1.0"
hyper = { version = "1.1.0", features = ["server", "http1"] }
hyper-util = { version = "0.1.3", features = ["full"] }
log = { version = "0.4.20" }
mockall = "0.12.1"
prometheus-client = "0.22.1"
prost = "0.12.3"
prost-types = "0.12.3"
reqwest = "0.11.24"
ron = "0.8.1"
serde = "1.0.195"
serde_json = "1.0.111"
serde_with = { version = "3.4.0", features = ["chrono_0_4", "chrono"] }
sqlx = { version = "0.7.3", features = [
"postgres",
"runtime-tokio",
"tls-rustls",
"uuid",
"time",
"chrono",
] }
tokio = { version = "1.35.1", features = [
"test-util",
"signal",
"rt-multi-thread",
] }
tokio-stream = "0.1.14"
tokio-util = "0.7.10"
tonic = "0.10.2"
uuid = { version = "1.6.1", features = [
"v4",
"fast-rng",
"macro-diagnostics",
"serde",
] }
[build-dependencies]
tonic-build = "0.10"
[lib]
name = "transmit"
path = "src/lib.rs"
[[bin]]
name = "transmit"
path = "src/main.rs"