Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement shared custom data (re-worked) based on the previous work from kitgxrl #435

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
target
target_ra
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you explain where is this coming from? :) I assume it's not a cargo/rust folder?

Copy link
Author

@thebashpotato thebashpotato May 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry I forgot to remove that, my neovim rust-analyzer setup creates a different folder for the analyzation to speed up development and avoid locks on the target directory. It becomes useful in large Rust codebases.

.vscode
.idea
ci/node_modules
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[workspace]
members = ["engineio", "socketio"]
resolver = "2"
2 changes: 1 addition & 1 deletion engineio/src/asynchronous/client/async_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl Debug for Client {
}
}

#[cfg(all(test))]
#[cfg(test)]
mod test {

use super::*;
Expand Down
2 changes: 1 addition & 1 deletion engineio/src/asynchronous/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub mod async_transports;
pub mod transport;

pub(self) mod async_socket;
mod async_socket;
#[cfg(feature = "async-callbacks")]
mod callback;
#[cfg(feature = "async")]
Expand Down
Loading
Loading