Skip to content

Commit

Permalink
Merge pull request #311 from c410-f3r/patch-1
Browse files Browse the repository at this point in the history
Fix no-std environment
  • Loading branch information
paupino authored Jan 20, 2021
2 parents 457697e + 7d860da commit f99c020
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ version = "1.9.0"

[dependencies]
byteorder = { default-features = false, optional = true, version = "1.3" }
bytes = { default-features = false, optional = true, version = "1.0.0" }
bytes = { default-features = false, optional = true, version = "1.0" }
diesel = { default-features = false, features = ["postgres"], optional = true, version = "1.4" }
num-traits = { default-features = false, version = "0.2" }
postgres = { default-features = false, optional = true, version = "0.19.0" }
postgres = { default-features = false, optional = true, version = "0.19" }
serde = { default-features = false, optional = true, version = "1.0" }
serde_json = { default-features = false, optional = true, version = "1.0" }
tokio-postgres = { default-features = false, optional = true, version = "0.7.0" }
arrayvec = "0.5.2"
tokio-postgres = { default-features = false, optional = true, version = "0.7" }
arrayvec = { default-features = false, version = "0.5" }

[dev-dependencies]
bincode = "1.3"
Expand All @@ -42,7 +42,7 @@ serde-bincode = ["serde-str"] # Backwards compatability
serde-float = ["serde"]
serde-str = ["serde"]
serde-arbitrary-precision = ["serde", "serde_json/arbitrary_precision"]
std = []
std = ["arrayvec/std"]
tokio-pg = ["db-tokio-postgres"] # Backwards compatability

[workspace]
Expand Down

0 comments on commit f99c020

Please sign in to comment.