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]
|
2024-04-14 16:05:56 +02:00
|
|
|
tokio = { version = "1.37", features = ["full"] }
|
2022-07-18 13:17:02 +02:00
|
|
|
anyhow = { version = "*" }
|
2024-04-14 16:05:56 +02:00
|
|
|
async-trait = { version = "0.1.80" }
|
2024-04-10 21:45:09 +02:00
|
|
|
futures = "0.3.30"
|
2022-07-18 13:17:02 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
lazy_static = "1.4.0"
|
2024-04-14 16:05:56 +02:00
|
|
|
regex = { version = "1.10.4" }
|
|
|
|
thiserror = "1.0.58"
|
|
|
|
uuid = {version = "1.8.0", features = ["v4", "fast-rng"]}
|