Skip to content

Commit 4196210

Browse files
committed
fixed links for crates.io publish
1 parent 00c0c78 commit 4196210

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

websocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "websocket-std"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
authors = ["Alejandro Palomino <alejandropalomino22@gmail.com>"]
66
rust-version = "1.65.0"

websocket/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ This is a WebSocket implementation in Rust that utilizes the standard library. I
55
- Publish a library in crates.io.
66
- How to use the library from other languages.
77

8-
The project is currently in beta phase, and while it is functional, further work is needed for the final version. Since I am a sole developer and cannot dedicate as much time as I would like, I have decided to publish it for those who want to try it out and contribute to the project [CONTRIBUTING.md](./CONTRIBUTING.md).
8+
The project is currently in beta phase, and while it is functional, further work is needed for the final version. Since I am a sole developer and cannot dedicate as much time as I would like, I have decided to publish it for those who want to try it out and contribute to the project [CONTRIBUTING.md](../CONTRIBUTING.md).
99

1010
You can use the library in the following ways:
1111

1212
- In any Rust project that allows the use of the standard library, such as ``esp-rs`` with ``std`` support. Check out the [esp-rs docs](https://esp-rs.github.io/book/overview/using-the-standard-library.html) for more information.
13-
- In any C project, as it has a compatible FFI (Foreign Function Interface). You’ll need to compile the project as a static library and link it appropriately. Refer to this guide ([static lib usage](./ffi/README.md)) for more details.
13+
- In any C project, as it has a compatible FFI (Foreign Function Interface). You’ll need to compile the project as a static library and link it appropriately. Refer to this guide ([static lib usage](../ffi/README.md)) for more details.
1414

1515
**Feel free to explore the project and contribute! 🚀**
1616

@@ -19,11 +19,11 @@ You can use the library in the following ways:
1919
## Static library
2020
In the ``ffi/`` folder you will find the ``websocket-std.h`` header and a compiled static library for the xtensa architecture of the esp32 microcontroller from espressif.
2121

22-
You can use this static library in your esp idf and arduino projects for esp32. Check [ffi/xtensa-esp32-idf](./ffi/xtensa-esp32-espidf/README.md) for more information.
22+
You can use this static library in your esp idf and arduino projects for esp32. Check [ffi/xtensa-esp32-idf](../ffi/xtensa-esp32-espidf/README.md) for more information.
2323

2424
## Examples
2525

26-
The [examples](./examples/) folder contains various examples of how to use ``websocket-std``.
26+
The [examples](../examples/) folder contains various examples of how to use ``websocket-std``.
2727

2828
## Features
2929

@@ -33,7 +33,7 @@ The sync client manage an internal event loop, when you call a function to perfo
3333
it will be queued and as soon as you call the ``event_loop`` function it will perform one input (something was received)
3434
and one output (something to send to server) operations in one execution.
3535

36-
You can also use ``threads`` to work with the library. Check [examples](./examples/) for more information.
36+
You can also use ``threads`` to work with the library. Check [examples](../examples/) for more information.
3737

3838
#### What works
3939
- Send text messages.

0 commit comments

Comments
 (0)