Add serde feature and dependency
This commit is contained in:
parent
351af3a983
commit
5428719ad3
2 changed files with 5 additions and 0 deletions
|
|
@ -13,6 +13,9 @@ Procedure when bumping the version number:
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- `serde` feature
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- **(breaking)**
|
- **(breaking)**
|
||||||
Error handling of `Action`s is now more complex but more powerful. In
|
Error handling of `Action`s is now more complex but more powerful. In
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,10 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
serde = ["dep:serde"]
|
||||||
tokio = ["dep:tokio"]
|
tokio = ["dep:tokio"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rusqlite = "0.28"
|
rusqlite = "0.28"
|
||||||
|
serde = { version = "1.0", optional = true }
|
||||||
tokio = { version = "1.25", features = ["sync"], optional = true }
|
tokio = { version = "1.25", features = ["sync"], optional = true }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue