Skip to content

Commit 75bb3ec

Browse files
committed
0.2.5 removed bincode
1 parent 9e3a045 commit 75bb3ec

File tree

3 files changed

+2
-102
lines changed

3 files changed

+2
-102
lines changed

Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bma-ts"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
edition = "2024"
55
authors = ["Serhij S. <div@altertech.com>"]
66
license = "MIT"
@@ -16,7 +16,6 @@ features = ["full"]
1616
features = ["full"]
1717

1818
[dependencies]
19-
bincode = { version = "2.0.1", optional = true }
2019
chrono = { version = "0.4", optional = true }
2120
dateparser = { version = "0.2", optional = true }
2221
serde = { version = "1.0", features = ["derive"], optional = true }
@@ -33,7 +32,6 @@ web-time = "1.1"
3332
[features]
3433
#default = [ "full" ]
3534
chrono = ["dep:chrono", "dateparser"]
36-
full = [ "chrono", "serde", "bincode", "sqlx" ]
35+
full = [ "chrono", "serde", "sqlx" ]
3736
as-float-secs = []
3837
serde = ["dep:serde"]
39-
bincode = ["dep:bincode"]

src/impl_bincode.rs

Lines changed: 0 additions & 96 deletions
This file was deleted.

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ pub use timestamp::Timestamp;
66
mod common;
77
mod convert;
88
mod error;
9-
#[cfg(feature = "bincode")]
10-
mod impl_bincode;
119
#[cfg(feature = "chrono")]
1210
mod impl_chrono;
1311
#[cfg(feature = "serde")]

0 commit comments

Comments
 (0)