Skip to content

Commit

Permalink
remove decimal default feature
Browse files Browse the repository at this point in the history
  • Loading branch information
baoyachi committed Jul 29, 2021
1 parent fdefeb7 commit 70c4cd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duration-str"
version = "0.3.1"
version = "0.3.2"
authors = ["baoyachi <[email protected]>"]
edition = "2018"
description = "duration string parser"
Expand All @@ -19,7 +19,7 @@ anyhow = "1.0.38"
chrono = { version = "0.4.19", optional = true }
serde = { version = "1.0.124", features = ["derive"], optional = true }
serde_json = { version = "1.0.64", optional = true }
rust_decimal = "1.15"
rust_decimal = { version = "1.15", default-features = false }

[features]
default = ["chrono","serde","serde_json"]
default = ["chrono", "serde", "serde_json"]

0 comments on commit 70c4cd5

Please sign in to comment.