Skip to content

Commit

Permalink
Cargo dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
JijoBose committed Aug 11, 2024
1 parent fa788fa commit ff595b0
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 45 deletions.
105 changes: 64 additions & 41 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ App to manage your inventories

**Update Entity**

``sea-orm-cli generate entity -u postgres://jijobose:password@localhost/loco_app -o entity/src``
``sea-orm-cli generate entity -u postgres://user:password@localhost/home_inventory -o entity/src``
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ strum = { version = "0.26.0", features = ["derive"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tokio = { version = "1.35.1", features = ["net", "full"] }
sea-orm = { version = "0.12.12", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
sea-orm = { version = "1.0.0", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
entity = { path = "../entity" }
migration = { path = "../migration" }
2 changes: 1 addition & 1 deletion entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ path = "src/lib.rs"
serde = { version = "1.0.196", features = ["derive"] }

[dependencies.sea-orm]
version = "0.12.12"
version = "1.0.0"
2 changes: 1 addition & 1 deletion migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ path = "src/lib.rs"
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }

[dependencies.sea-orm-migration]
version = "0.12.12"
version = "1.0.0"
features = [
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
Expand Down

0 comments on commit ff595b0

Please sign in to comment.