Skip to content

Commit

Permalink
issues-280 Rename sea-driver to sea-query-driver
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrivosheev committed Apr 3, 2022
1 parent 66b6d58 commit c9671df
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
25 changes: 13 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
members = [
".",
"sea-query-derive",
"sea-query-driver",
"examples/postgres",
"examples/postgres_json",
"examples/cockroach",
Expand Down Expand Up @@ -37,7 +38,7 @@ path = "src/lib.rs"

[dependencies]
sea-query-derive = { version = "0.2.0", path = "sea-query-derive", optional = true }
sea-driver = { version = "0.0.1", path = "sea-driver" }
sea-query-driver = { version = "0.0.1", path = "sea-query-driver" }
serde_json = { version = "^1", optional = true }
bytes = { version = "^1", optional = true }
chrono = { version = "^0", optional = true }
Expand All @@ -64,20 +65,20 @@ postgres-json = ["with-json", "postgres-types/with-serde_json-1"]
postgres-rust_decimal = ["with-rust_decimal", "rust_decimal/db-postgres"]
postgres-bigdecimal = ["with-bigdecimal"]
postgres-uuid = ["with-uuid", "postgres-types/with-uuid-0_8"]
postgres-array = ["postgres-types/array-impls", "sea-driver/postgres-array"]
postgres-array = ["postgres-types/array-impls", "sea-query-driver/postgres-array"]
postgres-interval = ["proc-macro2", "quote"]
postgres-time = ["with-time", "postgres-types/with-time-0_2"]
rusqlite = ["sea-driver/rusqlite"]
sqlx-mysql = ["sea-driver/sqlx-mysql"]
sqlx-postgres = ["sea-driver/sqlx-postgres"]
sqlx-sqlite = ["sea-driver/sqlx-sqlite"]
rusqlite = ["sea-query-driver/rusqlite"]
sqlx-mysql = ["sea-query-driver/sqlx-mysql"]
sqlx-postgres = ["sea-query-driver/sqlx-postgres"]
sqlx-sqlite = ["sea-query-driver/sqlx-sqlite"]
thread-safe = []
with-chrono = ["chrono", "sea-driver/with-chrono"]
with-json = ["serde_json", "sea-driver/with-json"]
with-rust_decimal = ["rust_decimal", "sea-driver/with-rust_decimal"]
with-bigdecimal = ["bigdecimal", "sea-driver/with-bigdecimal"]
with-uuid = ["uuid", "sea-driver/with-uuid"]
with-time = ["time", "sea-driver/with-time"]
with-chrono = ["chrono", "sea-query-driver/with-chrono"]
with-json = ["serde_json", "sea-query-driver/with-json"]
with-rust_decimal = ["rust_decimal", "sea-query-driver/with-rust_decimal"]
with-bigdecimal = ["bigdecimal", "sea-query-driver/with-bigdecimal"]
with-uuid = ["uuid", "sea-query-driver/with-uuid"]
with-time = ["time", "sea-query-driver/with-time"]

[[test]]
name = "test-derive"
Expand Down
3 changes: 1 addition & 2 deletions sea-driver/Cargo.toml → sea-query-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sea-driver"
name = "sea-query-driver"
version = "0.0.1"
authors = [ "Follpvosten <[email protected]>", "Rene Leveille <[email protected]>" ]
edition = "2021"
Expand Down Expand Up @@ -33,5 +33,4 @@ postgres-array = []


[dev-dependencies]
trybuild = "^1.0"
sea-query = { version = "^0", path = ".." }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -752,4 +752,4 @@ pub use value::*;
#[cfg(feature = "derive")]
pub use sea_query_derive::Iden;

pub use sea_driver::*;
pub use sea_query_driver::*;

0 comments on commit c9671df

Please sign in to comment.