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..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