Skip to content

Commit

Permalink
get ready to cargo publish
Browse files Browse the repository at this point in the history
  • Loading branch information
quackitsquinn committed May 19, 2024
1 parent 9e2e66b commit 56722fb
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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::<String>();

Expand Down
5 changes: 5 additions & 0 deletions lazuli_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 5 additions & 0 deletions lazuli_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 56722fb

Please sign in to comment.