52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
name = "comemo"
|
|
version = "0.4.0"
|
|
authors = ["Laurenz <laurmaedje@gmail.com>"]
|
|
description = "Incremental computation through constrained memoization."
|
|
readme = "README.md"
|
|
keywords = [
|
|
"incremental",
|
|
"memoization",
|
|
"tracked",
|
|
"constraints",
|
|
]
|
|
categories = ["caching"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/typst/comemo"
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
path = "tests/tests.rs"
|
|
required-features = ["testing"]
|
|
|
|
[dependencies.comemo-macros]
|
|
version = "0.4.0"
|
|
|
|
[dependencies.once_cell]
|
|
version = "1.18"
|
|
|
|
[dependencies.parking_lot]
|
|
version = "0.12"
|
|
|
|
[dependencies.siphasher]
|
|
version = "1"
|
|
|
|
[dev-dependencies.serial_test]
|
|
version = "3"
|
|
|
|
[features]
|
|
default = []
|
|
testing = []
|