-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
54 lines (49 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
46
47
48
49
50
51
52
53
54
[workspace]
resolver = "2"
members = [".", "entities", "migration"]
[package]
name = "bvilovebot"
version = "0.1.0"
authors = ["Averyanov Alexander <[email protected]>"]
edition = "2021"
[dependencies]
teloxide = { version = "0.12.2", features = ["macros", "throttle"] }
sea-orm.workspace = true
tokio.workspace = true
anyhow = "1.0.71"
# anyhow = { version = "1.0.71", features = ["backtrace"] }
migration = { path = "migration" }
entities = { path = "entities" }
chrono = "0.4.24"
tracing.workspace = true
tracing-subscriber.workspace = true
rand = "0.8.5"
bitflags = "2.3.1"
strum = { version = "0.24.1", features = ["derive"] }
itertools = "0.10.5"
simsearch = "0.2.4"
phf = "0.11.1"
strsim = "0.10.0"
url = "2.4.0"
thiserror = "1.0.40"
sentry = { version = "0.31.3", features = ["profiling"] }
futures-util = "0.3.28"
sentry-anyhow = "0.31.3"
sentry-tracing = "0.31.3"
[workspace.dependencies]
sea-orm = { version = "0.11.3", features = [
"runtime-tokio-native-tls",
"sqlx-postgres",
"macros",
] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
[build-dependencies]
phf = { version = "0.11.1", default-features = false }
phf_codegen = "0.11.1"
csv = "1.2.2"
serde = "1.0.163"
[profile.release]
debug = 0
lto = "thin"