scel/crates/scel_core/Cargo.toml

18 lines
458 B
TOML
Raw Normal View History

2022-07-16 14:05:12 +02:00
[package]
name = "scel_core"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-18 22:47:30 +01:00
tokio = { version = "1.22", features = ["full"] }
anyhow = { version = "*" }
2022-10-27 22:12:46 +02:00
async-trait = { version = "0.1.58" }
futures = "0.3.30"
tracing = "0.1"
lazy_static = "1.4.0"
2022-11-05 20:57:53 +01:00
regex = { version = "1.7.0" }
2022-10-27 22:12:46 +02:00
thiserror = "1.0.37"
2022-11-15 18:19:51 +01:00
uuid = {version = "1.2.2", features = ["v4", "fast-rng"]}