Skip to content
Merged
Changes from all 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ Quick start with hexser:

```toml
[dependencies]
hexser = { path = "./hexser", version = "0.4.7", features = ["macros"] }
hexser = { path = "./hexser", version = "0.5", features = ["macros"] }
```

```rust
use hexser::prelude::*;

// Domain entity
struct User { id: String }
impl Entity for User { type Id = String; }
impl HexEntity for User { type Id = String; }

// Repository port (query-oriented)
// Define lightweight filter/sort types in your domain
Expand Down Expand Up @@ -139,7 +139,7 @@ Use directly from the workspace:

```toml
[dependencies]
hexser_potions = { path = "./hexser_potions", version = "0.4.7" }
hexser_potions = { path = "./hexser_potions", version = "0.5" }
```

Then in your code:
Expand Down
Loading