2022-07-16 14:05:12 +02:00
|
|
|
[package]
|
|
|
|
name = "scel"
|
|
|
|
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-10 21:13:41 +02:00
|
|
|
tokio = { version = "1.37", features = ["full"] }
|
2022-07-16 14:05:12 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2024-04-10 21:13:41 +02:00
|
|
|
anyhow = { version = "1.0.82" }
|
2022-07-18 13:17:02 +02:00
|
|
|
dotenv = { version = "*" }
|
2022-07-16 14:05:12 +02:00
|
|
|
|
2024-04-10 20:50:48 +02:00
|
|
|
scel_api = { path = "../scel_api" }
|
|
|
|
scel_core = { path = "../scel_core" }
|