-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (55 loc) · 1.45 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
57
58
59
[package]
name = "octabot"
version = "0.1.0"
authors = ["Roman Efremenko <[email protected]>"]
license = "MIT"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.95"
async-trait = "0.1.86"
chrono = { version = "0.4.39", features = ["serde"] }
dotenvy = "0.15.7"
sqlx = { version = "0.8.3", features = [
"sqlite",
"runtime-tokio",
"tls-rustls",
"chrono",
"uuid",
] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
tokio-util = "0.7.13"
tracing = { version = "0.1.41", features = ["attributes"] }
tracing-subscriber = { version = "0.3.19", features = [
"registry",
"env-filter",
] }
uuid = { version = "1.13.1", features = ["serde", "v4"] }
[dependencies]
anyhow = { workspace = true }
dotenvy = { workspace = true }
futures = "0.3.31"
rustls = { version = "0.23.22", features = ["ring"] }
tokio-tungstenite = { version = "0.26.1", features = [
"rustls-tls-webpki-roots",
] }
sqlx = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
octabot-api = { path = "crates/api" }
octabot-executor = { path = "crates/executor" }
[workspace]
resolver = "2"
members = ["crates/*"]
# default to small, optimized workspace release binaries
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
incremental = false
opt-level = "s"
strip = true