-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
45 lines (40 loc) · 1.26 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
[package]
name = "rusty-sidekiq"
version = "0.11.1"
edition = "2021"
description = "A rust sidekiq server and client using tokio"
authors = ["Garrett Thornburg <[email protected]>"]
homepage = "https://github.com/film42/sidekiq-rs"
repository = "https://github.com/film42/sidekiq-rs.git"
keywords = ["sidekiq", "worker", "tokio", "ruby"]
license = "MIT"
readme = "README.md"
[features]
default = ["rss-stats"]
# There is currently a dependency bug for mac in the `darwin-libproc` crate making it so
# cargo cannot resolve deps. Once resolved we may choose to remove this feature flag.
rss-stats = ["dep:simple-process-stats"]
[lib]
name = "sidekiq"
[dependencies]
gethostname = "0.2"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7.10"
serde_json = { version = "1" }
serde = { version = "1.0", features = ["derive"] }
redis = { version = "0.22", features = ["aio", "default", "tokio-comp"] }
async-trait = "0.1.74"
slog-term = "2.9"
thiserror = "1.0"
bb8 = "0.8"
num_cpus = "1.13"
chrono = "0.4"
rand = "0.8"
hex = "0.4"
cron_clock = "0.8.0"
simple-process-stats = { version = "1.0.0", optional = true }
sha2 = "0.10.6"
convert_case = "0.6.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
serial_test = "3.1.1"