taskwarrior/rust/taskchampion/Cargo.toml
dependabot[bot] e8fe3cda77 Bump rusqlite from 0.25.3 to 0.27.0
Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.25.3 to 0.27.0.
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](https://github.com/rusqlite/rusqlite/compare/v0.25.3...v0.27.0)

---
updated-dependencies:
- dependency-name: rusqlite
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-25 23:40:33 -04:00

33 lines
874 B
TOML

[package]
name = "taskchampion"
version = "0.4.1"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
description = "Personal task-tracking"
homepage = "https://taskchampion.github.io/taskchampion/"
documentation = "https://docs.rs/crate/taskchampion"
repository = "https://github.com/taskchampion/taskchampion"
readme = "../README.md"
license = "MIT"
edition = "2018"
[dependencies]
uuid = { version = "^0.8.2", features = ["serde", "v4"] }
serde = { version = "^1.0.125", features = ["derive"] }
serde_json = "^1.0"
chrono = { version = "^0.4.10", features = ["serde"] }
anyhow = "1.0"
thiserror = "1.0"
ureq = "^2.1.0"
log = "^0.4.17"
rusqlite = { version = "0.27", features = ["bundled"] }
strum = "0.21"
strum_macros = "0.21"
flate2 = "1"
byteorder = "1.0"
ring = "0.16"
[dev-dependencies]
proptest = "^1.0.0"
tempfile = "3"
rstest = "0.10"
pretty_assertions = "1"