koto_tempfile 0.15.2

A Koto library for working with temporary files
Documentation
[package]
name = "koto_tempfile"
version = "0.15.2"
description = "A Koto library for working with temporary files"

authors.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true

[features]
default = ["rc"]

# Only one memory management strategy can be enabled at a time.
# To use `arc`, default features must be disabled.
arc = ["koto_runtime/arc"]
rc = ["koto_runtime/rc"]

[dependencies]
tempfile = { workspace = true }

[dependencies.koto_runtime]
path = "../../crates/runtime"
version = "^0.15.2"
default-features = false

[dev-dependencies]
koto_test_utils = { path = "../../crates/test_utils", default-features = false }