Files
tuliprox/backend/parser/Cargo.toml
T
euzuandGitHub 9ec775b35b Feature/multi crate (#837)
Refactored to multi crate project
2026-08-27 15:36:23 +02:00

32 lines
859 B
TOML

[package]
name = "tuliprox-parser"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "Provider wire-format parsing and URL building for tuliprox"
[lints]
workspace = true
[dependencies]
shared = { workspace = true }
tuliprox-core = { workspace = true }
aes = "0.8.4"
base64.workspace = true
chrono.workspace = true
chrono-tz = "0.10.4"
ctr = "0.9.2"
indexmap.workspace = true
log.workspace = true
regex.workspace = true
serde.workspace = true
serde_json = { workspace = true, features = ["raw_value", "preserve_order"] }
tokio = { workspace = true, features = ["rt-multi-thread", "fs", "time", "macros"] }
tokio-util = { version = "0.7.19", features = ["io", "io-util"] }
url.workspace = true
[dev-dependencies]
rand = "0.9.5"
tempfile = "3.27.0"
tokio = { workspace = true, features = ["test-util", "macros"] }