-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 903 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (34 loc) · 903 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
34
35
36
37
38
39
40
41
42
[workspace]
members = [ "crates/bulk_runner_rs", "crates/bulk_runner_bots", "crates/bulk_runner_query" ]
resolver = "2"
package.rust-version = "1.82.0"
[workspace.metadata]
version = "2.1.1"
edition = "2021"
# license = "MIT OR Apache-2.0"
license = "LICENSE"
exclude = [ "target" ]
[profile.dev.package."*"]
opt-level = 3
codegen-units = 1
[profile.dev]
opt-level = 1
codegen-units = 256
incremental = true
[profile.release]
opt-level = 3
codegen-units = 1
debug = "none"
debug-assertions = false
incremental = true
[workspace.dependencies]
# Core dependencies
tokio = { version = "1.41.1", features = [ "full", "tracing" ] }
futures = "0.3.31"
async-trait = "0.1.83"
# Logging
tracing = "0.1.40"
# Error handling
thiserror = "2.0.3"
# Database
deadpool-tiberius = { version = "0.1.8", features = [ "winauth", "chrono" ] }