log: Initialize wrapper crate for using Logging implementations

This commit is contained in:
George Kaklamanos 2023-11-30 17:06:16 +02:00
parent cc958d3d93
commit e6f62255cb
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
7 changed files with 82 additions and 3 deletions

15
labadoor-log/Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "labadoor-log"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.4.10", features = ["derive"] }
config = "0.13.4"
serde = { version = "1.0.193", features = ["derive"] }
toml = "0.8.8"
labadoor-csv = { path = "../labadoor-csv", optional = true }
labadoor-logging = { path = "../labadoor-logging"}
[features]
csv = ["dep:labadoor-csv"]