From ad5435c1c6d2c429db1e41c0debad3a80fb9942b Mon Sep 17 00:00:00 2001 From: comfysage <67917529+comfysage@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:25:35 +0200 Subject: [PATCH] feat: add log crate --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index f7dabe2..b05ed12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -146,6 +146,7 @@ name = "enkei" version = "0.1.0" dependencies = [ "cursive", + "log", "saku_logger", ] diff --git a/Cargo.toml b/Cargo.toml index 72d0011..e18e1a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ edition = "2021" [dependencies] cursive = "0.20.0" +log = "0.4.21" [dependencies.saku_logger] git = "https://github.com/comfysage/saku?dir=log"