From de1f44d078df25292452feba11a4663d10a3939e Mon Sep 17 00:00:00 2001 From: QuackitsQuinn Date: Fri, 17 May 2024 12:01:55 -0500 Subject: [PATCH] get ready to cargo publish --- Cargo.toml | 7 ++++++- README.md | 2 +- lazuli_core/Cargo.toml | 4 ++++ lazuli_derive/Cargo.toml | 4 ++++ 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5e099a6..86e8977 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,13 @@ [package] name = "lazuli" -version = "0.1.0" edition = "2021" publish = true +version.workspace = true +authors.workspace = true +description.workspace = true +readme.workspace = true +license.workspace = true [workspace] @@ -17,6 +21,7 @@ readme = "README.md" repository = "https://github.com/quackitsquinn/lazuli" description = "A socket library for consistent, quick, and easy data transfer" keywords = ["socket", "networking", "data transfer", "tcp", "lazuli"] +publish = true [dependencies] diff --git a/README.md b/README.md index 3eb666f..88ed180 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Here is an example of how to use lazuli to send and receive data: ```rust -let client = Client::new(("127.0.0.1", 8080)) +let client = Client::connect(("127.0.0.1", 8080)) let stream = client.stream::(); diff --git a/lazuli_core/Cargo.toml b/lazuli_core/Cargo.toml index 1843d97..62f9bcc 100644 --- a/lazuli_core/Cargo.toml +++ b/lazuli_core/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "lazuli_core" version.workspace = true +authors.workspace = true +description.workspace = true +readme.workspace = true +license.workspace = true edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lazuli_derive/Cargo.toml b/lazuli_derive/Cargo.toml index dcdee83..b55c88a 100644 --- a/lazuli_derive/Cargo.toml +++ b/lazuli_derive/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "lazuli_derive" version.workspace = true +authors.workspace = true +description.workspace = true +readme.workspace = true +license.workspace = true edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html