Skip to content

Commit b511953

Browse files
committed
get ready to cargo publish
1 parent 9e2e66b commit b511953

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

Diff for: Cargo.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11

22
[package]
33
name = "lazuli"
4-
version = "0.1.0"
54
edition = "2021"
65
publish = true
6+
version.workspace = true
7+
authors.workspace = true
8+
description.workspace = true
9+
readme.workspace = true
10+
license.workspace = true
711

812

913
[workspace]
@@ -17,6 +21,7 @@ readme = "README.md"
1721
repository = "https://github.com/quackitsquinn/lazuli"
1822
description = "A socket library for consistent, quick, and easy data transfer"
1923
keywords = ["socket", "networking", "data transfer", "tcp", "lazuli"]
24+
publish = true
2025

2126

2227
[dependencies]

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Here is an example of how to use lazuli to send and receive data:
1919

2020
```rust
2121

22-
let client = Client::new(("127.0.0.1", 8080))
22+
let client = Client::connect(("127.0.0.1", 8080))
2323

2424
let stream = client.stream::<String>();
2525

Diff for: lazuli_core/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[package]
22
name = "lazuli_core"
33
version.workspace = true
4+
authors.workspace = true
5+
description.workspace = true
6+
readme.workspace = true
7+
license.workspace = true
8+
repository.workspace = true
49
edition = "2021"
510

611
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Diff for: lazuli_derive/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[package]
22
name = "lazuli_derive"
33
version.workspace = true
4+
authors.workspace = true
5+
description.workspace = true
6+
readme.workspace = true
7+
license.workspace = true
8+
repository.workspace = true
49
edition = "2021"
510

611
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)