29 lines
780 B
TOML
29 lines
780 B
TOML
|
|
[package]
|
||
|
|
name = "boc-rust-service"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
tokio = { version = "1.35", features = ["full", "rt-multi-thread"] }
|
||
|
|
tokio-postgres = { version = "0.7", features = ["with-uuid-1", "with-serde_json-1", "with-chrono-0_4"] }
|
||
|
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
|
serde_json = "1.0"
|
||
|
|
axum = "0.7"
|
||
|
|
tower = "0.4"
|
||
|
|
tower-http = { version = "0.5", features = ["cors", "trace"] }
|
||
|
|
tracing = "0.1"
|
||
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||
|
|
chrono = { version = "0.4", features = ["serde"] }
|
||
|
|
uuid = { version = "1.6", features = ["serde", "v4"] }
|
||
|
|
dashmap = "5.5"
|
||
|
|
rayon = "1.8"
|
||
|
|
libc = "0.2"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "boc_rust"
|
||
|
|
crate-type = ["cdylib", "staticlib", "rlib"]
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "boc-rust-service"
|
||
|
|
path = "src/main.rs"
|