Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Aug 8, 2021
1 parent 2442d0c commit 29ad410
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/cockroach/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
postgres = "^0.19"
sea-query = { path = "../../", features = ["postgres"] }
# NOTE: if you are copying this example into your own project, use the following line instead:
# sea-query = { version = "^0.9", features = ["postgres"] }
# sea-query = { version = "^0.12", features = ["postgres"] }
2 changes: 1 addition & 1 deletion examples/cockroach_json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ chrono = "^0"
postgres = "^0.19"
sea-query = { path = "../../", features = ["postgres", "postgres-chrono", "postgres-json", "postgres-uuid"] }
# NOTE: if you are copying this example into your own project, use the following line instead:
# sea-query = { version = "^0.9", features = ["postgres", "postgres-chrono", "postgres-json"] }
# sea-query = { version = "^0.12", features = ["postgres", "postgres-chrono", "postgres-json"] }
serde_json = "^1"
2 changes: 1 addition & 1 deletion examples/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
postgres = "^0.19"
sea-query = { path = "../../", features = ["postgres"] }
# NOTE: if you are copying this example into your own project, use the following line instead:
# sea-query = { version = "^0.9", features = ["postgres"] }
# sea-query = { version = "^0.12", features = ["postgres"] }
2 changes: 1 addition & 1 deletion examples/postgres_json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ chrono = "^0"
postgres = "^0.19"
sea-query = { path = "../../", features = ["postgres", "postgres-chrono", "postgres-json", "postgres-uuid"] }
# NOTE: if you are copying this example into your own project, use the following line instead:
# sea-query = { version = "^0.9", features = ["postgres", "postgres-chrono", "postgres-json"] }
# sea-query = { version = "^0.12", features = ["postgres", "postgres-chrono", "postgres-json"] }
serde_json = "^1"
2 changes: 1 addition & 1 deletion examples/rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
sea-query = { path = "../../", features = ["rusqlite"] }
# NOTE: if you are copying this example into your own project, use the following line instead:
# sea-query = { version = "^0.9", features = ["rusqlite"] }
# sea-query = { version = "^0.12", features = ["rusqlite"] }

[dependencies.rusqlite]
version = "^0.25"
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlx_mysql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
async-std = { version = "1.8", features = [ "attributes" ] }
sea-query = { path = "../../", features = ["sqlx-mysql"] }
# NOTE: if you are copying this example into your own project, use the following line instead:
# sea-query = { version = "^0.9", features = ["sqlx-mysql"] }
# sea-query = { version = "^0.12", features = ["sqlx-mysql"] }

# To fix sqlx on unstable Rust:
# lexical-core = { version = "0.7.5" }
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlx_postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
async-std = { version = "1.8", features = [ "attributes" ] }
sea-query = { path = "../../", features = ["sqlx-postgres"] }
# NOTE: if you are copying this example into your own project, use the following line instead:
# sea-query = { version = "^0.9", features = ["sqlx-postgres"] }
# sea-query = { version = "^0.12", features = ["sqlx-postgres"] }

[dependencies.sqlx]
version = "^0.5"
Expand Down

0 comments on commit 29ad410

Please sign in to comment.