Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
divi255 committed Jun 30, 2024
1 parent cb9beaa commit 1990241
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bma-ts"
version = "0.1.12"
version = "0.2.0"
edition = "2021"
authors = ["Serhij S. <[email protected]>"]
license = "MIT"
Expand All @@ -21,6 +21,7 @@ dateparser = { version = "0.2", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
sqlx = { version = "0.7", optional = true, features = ["postgres", "sqlite"] }
thiserror = "1.0"
time = { version = "0.3.36", optional = true }

[target.'cfg(not(unix))'.dependencies]
once_cell = "1.19.0"
Expand All @@ -29,7 +30,9 @@ once_cell = "1.19.0"
nix = { version = "0.27", features = ["time"] }

[features]
#default = [ "full" ]
chrono = ["dep:chrono", "dateparser"]
full = [ "chrono", "serde", "sqlx" ]
default = []
chrono = ["dep:chrono"]
dateparser = ["dep:dateparser"]
time = ["dep:time"]
full = [ "chrono", "time", "dateparser", "serde", "sqlx" ]
as-float-secs = []

0 comments on commit 1990241

Please sign in to comment.