-
-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issues-336 Third try impl postgres-array #467
Changes from all commits
ac92bd1
a2931d8
f554714
f32f6c8
8154a5a
010af8a
4cd974b
fa26dad
9335b75
21f115e
d5424aa
b882d86
7bba3e2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,22 +17,33 @@ rust-version = "1.60" | |
[lib] | ||
|
||
[dependencies] | ||
sea-query = { version = "^0", path = ".." } | ||
sea-query = { version = "^0", path = "..", features = ["thread-safe"] } | ||
sqlx = { version = "^0.6.1", optional = true } | ||
serde_json = { version = "^1", optional = true } | ||
chrono = { version = "^0.4", default-features = false, features = ["clock"], optional = true } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we pub all these from a special I can imagine the two Cargo.toml might go out of sync in the future. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We want to make our third-party libraries as part of public interface? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point |
||
postgres-types = { version = "^0", optional = true } | ||
rust_decimal = { version = "^1", optional = true } | ||
bigdecimal = { version = "^0.3", optional = true } | ||
uuid = { version = "^1", optional = true } | ||
proc-macro2 = { version = "1", optional = true } | ||
quote = { version = "^1", optional = true } | ||
time = { version = "^0.3", optional = true, features = ["macros", "formatting"] } | ||
ipnetwork = { version = "^0.19", optional = true } | ||
mac_address = { version = "^1.1", optional = true } | ||
|
||
[features] | ||
sqlx-mysql = ["sqlx/mysql"] | ||
sqlx-postgres = ["sqlx/postgres"] | ||
sqlx-sqlite = ["sqlx/sqlite"] | ||
sqlx-any = ["sqlx/any"] | ||
with-chrono = ["sqlx/chrono", "sea-query/with-chrono"] | ||
with-json = ["sqlx/json", "sea-query/with-json"] | ||
with-rust_decimal = ["sqlx/decimal", "sea-query/with-rust_decimal"] | ||
with-bigdecimal = ["sqlx/bigdecimal", "sea-query/with-bigdecimal"] | ||
with-uuid = ["sqlx/uuid", "sea-query/with-uuid"] | ||
with-time = ["sqlx/time", "sea-query/with-time"] | ||
with-ipnetwork = ["sqlx/ipnetwork", "sea-query/with-ipnetwork"] | ||
with-mac_address = ["sqlx/mac_address", "sea-query/with-mac_address"] | ||
with-chrono = ["sqlx/chrono", "sea-query/with-chrono", "chrono"] | ||
with-json = ["sqlx/json", "sea-query/with-json", "serde_json"] | ||
with-rust_decimal = ["sqlx/decimal", "sea-query/with-rust_decimal", "rust_decimal"] | ||
with-bigdecimal = ["sqlx/bigdecimal", "sea-query/with-bigdecimal", "bigdecimal"] | ||
with-uuid = ["sqlx/uuid", "sea-query/with-uuid", "uuid"] | ||
with-time = ["sqlx/time", "sea-query/with-time", "time"] | ||
with-ipnetwork = ["sqlx/ipnetwork", "sea-query/with-ipnetwork", "ipnetwork"] | ||
with-mac_address = ["sqlx/mac_address", "sea-query/with-mac_address", "mac_address"] | ||
postgres-array = ["sea-query/postgres-array"] | ||
runtime-async-std-native-tls = ["sqlx/runtime-async-std-native-tls"] | ||
runtime-async-std-rustls = ["sqlx/runtime-async-std-rustls", ] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes sense