Skip to content

Commit

Permalink
exclude chrono default-features (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede authored and tyt2y3 committed Aug 17, 2022
1 parent e445098 commit 0b6cbe5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sea-query-derive = { version = "^0.2.0", path = "sea-query-derive", optional = t
sea-query-driver = { version = "^0.2.0", path = "sea-query-driver", optional = true }
serde_json = { version = "^1", optional = true }
bytes = { version = "^1", optional = true }
chrono = { version = "^0", optional = true }
chrono = { version = "^0", default-features = false, features = ["clock"], optional = true }
postgres-types = { version = "^0", optional = true }
rust_decimal = { version = "^1", optional = true }
bigdecimal = { version = "^0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/postgres_json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
chrono = "^0"
chrono = { version = "^0", default-features = false, features = ["clock"] }
time = { version = "^0.3", features = ["macros"] }
uuid = { version = "^1", features = ["serde", "v4"] }
serde_json = "^1"
Expand Down
2 changes: 1 addition & 1 deletion examples/rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
chrono = { version = "^0" }
chrono = { version = "^0", default-features = false, features = ["clock"] }
time = { version = "^0.2" }
serde_json = { version = "^1" }
# rusqlite only supports uuid 0
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlx_any/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
chrono = "^0"
chrono = { version = "^0", default-features = false, features = ["clock"] }
time = "^0.3"
uuid = { version = "^1", features = ["serde", "v4"] }
serde_json = "^1"
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 @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
chrono = "^0"
chrono = { version = "^0", default-features = false, features = ["clock"] }
time = { version = "^0.3", features = ["macros"] }
uuid = { version = "^1", features = ["serde", "v4"] }
serde_json = "^1"
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 @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
chrono = "^0"
chrono = { version = "^0", default-features = false, features = ["clock"] }
time = { version = "^0.3", features = ["macros"] }
uuid = { version = "^1", features = ["serde", "v4"] }
serde_json = "^1"
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlx_sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
chrono = "^0"
chrono = { version = "^0", default-features = false, features = ["clock"] }
time = { version = "^0.3", features = ["macros"] }
uuid = { version = "^1", features = ["serde", "v4"] }
serde_json = "^1"
Expand Down

0 comments on commit 0b6cbe5

Please sign in to comment.