You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,15 +77,15 @@ To add Disintegrate to your project, follow these steps:
77
77
```toml
78
78
[dependencies]
79
79
disintegrate = "4.0.0"
80
-
disintegrate-postgres = "4.0.0"
80
+
disintegrate-postgres = "4.0.1"
81
81
```
82
82
83
83
* Disintegrate provides several features that you can enable based on your project requirements. You can include them in your `Cargo.toml` file as follows:
84
84
85
85
```toml
86
86
[dependencies]
87
87
disintegrate = { version = "4.0.0", features = ["macros", "serde-prost"] }
88
-
disintegrate-postgres = { version = "4.0.0", features = ["listener"] }
88
+
disintegrate-postgres = { version = "4.0.1", features = ["listener"] }
89
89
```
90
90
91
91
* The macros feature enables the use of derive macros to simplify events implementations.
@@ -97,7 +97,7 @@ To add Disintegrate to your project, follow these steps:
97
97
* To enable Prost serialization, use the `serde-prost` feature: `features = ["serde-prost"]`.
98
98
* To enable Protocol Buffers serialization, use the `serde-protobuf` feature: `features = ["serde-protobuf"]`.
99
99
100
-
* If you're using the PostgreSQL event store backend and want to use the listener mechanism, you can enable the `listener` feature: `disintegrate-postgres = {version = "4.0.0", features = ["listener"]}`.
100
+
* If you're using the PostgreSQL event store backend and want to use the listener mechanism, you can enable the `listener` feature: `disintegrate-postgres = {version = "4.0.1", features = ["listener"]}`.
101
101
102
102
2. Define the list of events in your application. You can use the Event Storming technique to identify the events that occur in your system. Here's an example of defining events using Disintegrate:
0 commit comments