This repository has been archived on 2025-05-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fnct/Cargo.toml
dependabot[bot] 7c80475001
Update thiserror requirement from 1.0.40 to 2.0.0 (#20)
Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror) to permit the latest version.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.40...2.0.0)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-06 07:59:52 +00:00

29 lines
1 KiB
TOML

[package]
name = "fnct"
version = "0.6.5"
description = "Simple caching library that supports cache invalidation via tags"
license = "MIT"
documentation = "https://docs.rs/fnct/"
repository = "https://github.com/Defelo/fnct"
edition = "2021"
rust-version = "1.70.0"
[features]
default = []
serde_json = ["dep:serde_json"]
[dependencies]
async-trait = { version = "0.1.68", default-features = false }
postcard = { version = "1.0.4", default-features = false, features = ["use-std"] }
redis = { version = "0.27.0", default-features = false, features = ["tokio-comp"] }
serde = { version = "1.0.158", default-features = false }
serde_json = { version = "1.0.96", default-features = false, optional = true, features = ["std"] }
sha2 = { version = "0.10.6", default-features = false }
thiserror = { version = "2.0.0", default-features = false }
[dev-dependencies]
tokio = { version = "1.26.0", default-features = false, features = ["macros", "rt-multi-thread", "time", "parking_lot"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]