Skip to content

Commit

Permalink
Add HasAsyncErrorType to prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
soareschen committed Jan 16, 2025
1 parent 9d12f1a commit 107bf1d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/cgp-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-core"
version = "0.3.0"
version = "0.3.1"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/cgp-core/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub use cgp_component_macro::{
cgp_auto_getter, cgp_component, cgp_getter, cgp_preset, cgp_type, delegate_components,
for_each_replace, replace_with,
};
pub use cgp_error::{CanRaiseError, CanWrapError, HasErrorType};
pub use cgp_error::{CanRaiseError, CanWrapError, HasAsyncErrorType, HasErrorType};
pub use cgp_field::{
Char, Cons, Either, FieldGetter, HasField, HasFieldMut, MutFieldGetter, Nil, UseField, Void,
};
Expand Down
4 changes: 2 additions & 2 deletions crates/cgp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp"
version = "0.3.0"
version = "0.3.1"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -17,5 +17,5 @@ full = [ "cgp-core/full", "cgp-extra/full" ]

[dependencies]
cgp-async = { version = "0.3.0", default-features = false }
cgp-core = { version = "0.3.0", default-features = false }
cgp-core = { version = "0.3.1", default-features = false }
cgp-extra = { version = "0.3.0", default-features = false }

0 comments on commit 107bf1d

Please sign in to comment.