Skip to content

Commit 06a9d25

Browse files
committed
v0.7.0
1 parent c06d15c commit 06a9d25

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# **f`(`model`)`** - Functional Domain Modeling with Rust
22

3-
>Publicly available at [crates.io](https://crates.io/crates/fmodel-rust) and [docs.rs](https://docs.rs/fmodel-rust/latest/fmodel_rust/)
3+
> Publicly available at [crates.io](https://crates.io/crates/fmodel-rust) and [docs.rs](https://docs.rs/fmodel-rust/latest/fmodel_rust/)
4+
5+
> From version 0.7.0+, the library is using [`async fn` in Traits](https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-traits.html) feature, which is currently available only in stable Rust 1.75.0+.
6+
7+
> If you are using older version of Rust, please use version 0.6.0 of the library. It depends on `async-trait` crate. Version 0.6.0 is not maintained anymore, only patched for security issues and bugs.
48
59
When you’re developing an information system to automate the activities of the business, you are modeling the business.
610
The abstractions that you design, the behaviors that you implement, and the UI interactions that you build all reflect
@@ -539,7 +543,7 @@ cargo add fmodel-rust
539543
Or add the following line to your `Cargo.toml` file:
540544

541545
```toml
542-
fmodel-rust = "0.6.0"
546+
fmodel-rust = "0.7.0"
543547
```
544548

545549
## Examples

0 commit comments

Comments
 (0)