-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (56 loc) · 1011 Bytes
/
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
#[workspace]
#members = [".", "migration"]
[package]
name = "spider-novel"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "spider"
[profile.dev]
panic = "unwind"
[profile.release]
panic = "abort"
[dependencies]
quick-js = "0.4.1"
tokio = { version = "1.0.0", features = ["full"] }
anyhow = "1.0.58"
chrono = "0.4.19"
static_init = "1.0.2"
log = "0.4"
tracing = "0.1.35"
tracing-subscriber = "0.3.14"
async-trait = "0.1.56"
rs-snowflake = "0.6.0"
dotenv = "0.15.0"
nipper = "0.1.9"
async-recursion = "1.0.0"
serde_json = "1.0"
tera = "1.16.0"
thiserror = "1.0"
rand = "0.8.5"
[dependencies.reqwest]
version = "0.11.11"
features = [
"default-tls",
"brotli",
"gzip",
"deflate",
"blocking",
"json",
"multipart"
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sea-orm]
version = "0.8.0"
features = [
"macros",
"with-json",
"with-chrono",
"with-rust_decimal",
"with-uuid",
"with-time",
"sqlx-sqlite",
"runtime-tokio-rustls"
]