diff --git a/Cargo.lock b/Cargo.lock index 3db6fdb6..e9091e1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -616,9 +616,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.14" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8" dependencies = [ "cfg-if", ] diff --git a/cli/src/runner.rs b/cli/src/runner.rs index 78b517d4..6841f5c0 100644 --- a/cli/src/runner.rs +++ b/cli/src/runner.rs @@ -146,6 +146,9 @@ fn print_rcode(rcode: RespCode, idx: Option) { RespCode::PacketError => write_err!(idx, "Packet Error"), RespCode::ServerError => write_err!(idx, "Server Error"), RespCode::UnknownDataType => write_err!(idx, "Unknown data type"), + RespCode::EncodingError => write_err!(idx, "Encoding error"), + RespCode::AuthBadCredentials => write_err!(idx, "auth bad credentials"), + RespCode::AuthPermissionError => write_err!(idx, "auth permission error"), _ => write_err!(idx, "Unknown error"), } } diff --git a/harness/Cargo.toml b/harness/Cargo.toml index ecf37136..f6feed25 100644 --- a/harness/Cargo.toml +++ b/harness/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] libsky = { path = "../libsky" } env_logger = "0.9.0" -log = "0.4.14" +log = "0.4.16" zip = { version = "0.5.13", features = ["deflate"] } powershell_script = "0.3.2" openssl = { version = "0.10.38", features = ["vendored"] } diff --git a/libstress/Cargo.toml b/libstress/Cargo.toml index a0304f5c..320a351f 100644 --- a/libstress/Cargo.toml +++ b/libstress/Cargo.toml @@ -11,5 +11,5 @@ edition = "2021" num_cpus = "1.13.1" crossbeam-channel = "0.5.4" rayon = "1.5.1" -log = "0.4.14" +log = "0.4.16" rand = "0.8.5" diff --git a/server/Cargo.toml b/server/Cargo.toml index f78af306..3fe22b96 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -15,7 +15,7 @@ chrono = "0.4.19" clap = { version = "2", features = ["yaml"] } env_logger = "0.9.0" hashbrown = { version = "0.12.0", features = ["raw"] } -log = "0.4.14" +log = "0.4.16" num_cpus = "1.13.1" openssl = { version = "0.10.38", features = ["vendored"] } parking_lot = "0.12.0" diff --git a/sky-migrate/Cargo.toml b/sky-migrate/Cargo.toml index 805e2b63..79416cbd 100644 --- a/sky-migrate/Cargo.toml +++ b/sky-migrate/Cargo.toml @@ -10,5 +10,5 @@ edition = "2021" skytable = { git = "https://github.com/skytable/client-rust.git" } env_logger = "0.9.0" bincode = "1.3.3" -log = "0.4.14" +log = "0.4.16" clap = { version = "2", features = ["yaml"] } diff --git a/stress-test/Cargo.toml b/stress-test/Cargo.toml index 7099a901..7b644825 100644 --- a/stress-test/Cargo.toml +++ b/stress-test/Cargo.toml @@ -16,7 +16,7 @@ devtimer = "4.0.1" # external deps sysinfo = "0.23.5" env_logger = "0.9.0" -log = "0.4.14" +log = "0.4.16" rand = "0.8.5" crossbeam-channel = "0.5.4" num_cpus = "1.13.1"