![dependabot[bot]](/assets/img/avatar_default.png)
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>
29 lines
1 KiB
TOML
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"]
|