From 56722fb07e7281dc7718230e06dcb5d7e742fb8e 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 | 8 +++++++- README.md | 2 +- lazuli_core/Cargo.toml | 5 +++++ lazuli_derive/Cargo.toml | 5 +++++ 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5e099a6..6622619 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,14 @@ [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 +repository.workspace = true [workspace] @@ -17,6 +22,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..f131053 100644 --- a/lazuli_core/Cargo.toml +++ b/lazuli_core/Cargo.toml @@ -1,6 +1,11 @@ [package] name = "lazuli_core" version.workspace = true +authors.workspace = true +description.workspace = true +readme.workspace = true +license.workspace = true +repository.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..f59b322 100644 --- a/lazuli_derive/Cargo.toml +++ b/lazuli_derive/Cargo.toml @@ -1,6 +1,11 @@ [package] name = "lazuli_derive" version.workspace = true +authors.workspace = true +description.workspace = true +readme.workspace = true +license.workspace = true +repository.workspace = true edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html