Jelajahi Sumber

Rename internal library

Cesar Rodas 3 tahun lalu
induk
melakukan
da735df0fc
8 mengubah file dengan 9 tambahan dan 4 penghapusan
  1. 1 1
      Cargo.toml
  2. 5 0
      protocol/Cargo.lock
  3. 1 1
      protocol/Cargo.toml
  4. 0 0
      protocol/src/bytes.rs
  5. 0 0
      protocol/src/lib.rs
  6. 0 0
      protocol/src/macros.rs
  7. 1 1
      src/main.rs
  8. 1 1
      src/value.rs

+ 1 - 1
Cargo.toml

@@ -7,7 +7,7 @@ edition = "2018"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-redis-zero-parser = {path = "parser"}
+redis-zero-protocol-parser = {path = "protocol"}
 tokio={version="1", features = ["full", "tracing"] }
 tokio-util={version="^0.6", features = ["full"] }
 futures = { version = "0.3.0", features = ["thread-pool"]}

+ 5 - 0
protocol/Cargo.lock

@@ -0,0 +1,5 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+[[package]]
+name = "redis-zero-parser"
+version = "0.1.0"

+ 1 - 1
parser/Cargo.toml → protocol/Cargo.toml

@@ -1,5 +1,5 @@
 [package]
-name = "redis-zero-parser"
+name = "redis-zero-protocol-parser"
 version = "0.1.0"
 authors = ["Cesar Rodas <cesar@rodasm.com.py>"]
 edition = "2018"

+ 0 - 0
parser/src/bytes.rs → protocol/src/bytes.rs


+ 0 - 0
parser/src/lib.rs → protocol/src/lib.rs


+ 0 - 0
parser/src/macros.rs → protocol/src/macros.rs


+ 1 - 1
src/main.rs

@@ -8,7 +8,7 @@ mod value;
 use bytes::{Buf, Bytes, BytesMut};
 use dispatcher::Dispatcher;
 use futures::SinkExt;
-use redis_zero_parser::{parse_server, Error as RedisError};
+use redis_zero_protocol_parser::{parse_server, Error as RedisError};
 use log::info;
 use std::env;
 use std::error::Error;

+ 1 - 1
src/value.rs

@@ -1,6 +1,6 @@
 use crate::{error::Error, value_try_from, value_vec_try_from};
 use bytes::{Bytes, BytesMut};
-use redis_zero_parser::Value as ParsedValue;
+use redis_zero_protocol_parser::Value as ParsedValue;
 use std::convert::{TryFrom, TryInto};
 
 #[derive(Debug, PartialEq, Clone)]