-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 964 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
[package]
name = "dgg-phrases"
version = "0.1.2"
authors = ["vyneer <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fancy-regex = "0.10"
tokio-tungstenite = { version = "*", features = ["rustls-tls-webpki-roots"] }
url = "2.1"
log = "0.4"
env_logger = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
time = { version = "0.3", features = ["parsing", "macros"] }
tokio-postgres = "0.7"
dotenv = "*"
rust_decimal = { version = "1.12", features = ["db-postgres"]}
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls-webpki-roots"] }
tokio = { version = "1", features = ["full"] }
futures-util = "*"
futures-channel = "*"
ctrlc = { version = "3.0", features = ["termination"] }
crossbeam-channel = "0.5"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 1 # Optimize for speed.