polyphony-chat / chorus

A rust library for interacting with multiple Spacebar-compatible Instances at once.
https://crates.io/crates/chorus
Mozilla Public License 2.0
16 stars 7 forks source link

Move Shared<T> to types/mod.rs, bump some dependencies #492

Closed kozabrada123 closed 2 months ago

kozabrada123 commented 2 months ago

This pr includes various fixes:

error[E0432]: unresolved import crate::gateway --> src/types/entities/application.rs:10:12 | 10 | use crate::gateway::Shared; | ^^^^^^^ could not find gateway in the crate root

error[E0432]: unresolved import crate::gateway --> src/types/entities/audit_log.rs:7:12 | 7 | use crate::gateway::Shared; | ^^^^^^^ could not find gateway in the crate root ...

kozabrada123 commented 2 months ago

Are you ok with moving Shared<T>? @bitfl0wer It seems like the easiest way to fix these import errors

bitfl0wer commented 2 months ago

Yes, this seems like a good idea :)