-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 821 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 821 Bytes
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
[package]
name = "team_bot"
version = "0.1.0"
authors = ["Old Punk <roman.efremenko@gmail.com>"]
publish = false
license = "MIT"
edition = "2021"
[workspace]
members = [".", "api", "service", "entity"]
[dependencies]
anyhow = "1.0.93"
dotenvy = "0.15.7"
futures = "0.3.31"
sqlx = { version = "0.8.2", features = [
"sqlite",
"runtime-tokio",
"tls-native-tls",
] }
openssl-sys = { version = "0.9", features = ["vendored"] }
tokio = { version = "1.41.1", features = ["full", "tracing"] }
tokio-util = "0.7.12"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-appender = "0.2.3"
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }
team-bot-service = { path = "service" }
team-bot-api = { path = "api" }