This repository has been archived by the owner on Feb 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (51 loc) · 1.71 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
[package]
name = "stargazer-rs"
version = "0.1.0"
edition = "2021"
[lib]
name = "stargazer_lib"
path = "src/lib/lib.rs"
[[bin]]
name = "stargazer"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.12"
actix-rt = "2.6"
actix-signal = { version = "0.1", features = ["derive"] }
actix-web = "4.0.0-beta.15"
arraydeque = "0.4"
async-trait = "0.1"
actix-bililive = { version = "0.1.0-beta.7", default-features = false, features = ["rustls"] }
clap = { version = "3.1.2", features = ["derive"] }
dirs = "4.0"
egg-mode = { version = "0.16", default-features = false, features = ["rustls_webpki"] }
figment = { version = "0.10", features = ["toml", "json", "env"] }
frunk_core = "0.4"
futures = "0.3"
humantime-serde = "1.0"
hmap-serde = "0.1.0-alpha.2"
itertools = "0.10"
lapin = { version = "1.10", default-features = false, features = ["rustls-webpki-roots-certs"] }
mongodb = { version = "2.1.0", features = ["bson-uuid-0_8"] }
num_cpus = "1.13"
once_cell = { version = "1.9", features = ["parking_lot"] }
parking_lot = "0.12"
pin-project = "1.0"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
erased-serde = "0.3"
serde_json = "1.0"
tap = "1.0"
thiserror = "1.0"
tokio = { version = "1.16", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
tokio-amqp = { version = "1.1", default-features = false }
tracing = "0.1"
tracing-actix = "0.3"
tracing-subscriber = { version = "0.3", features = ["parking_lot"] }
typed-builder = "0.10"
uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
figment = { version = "0.10", features = ["toml", "json", "env", "test"] }
testcontainers = "0.12"
tracing-test = "0.2"