-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
53 lines (46 loc) · 1.22 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
members = ["macros"]
resolver = "2"
[workspace.package]
version = "0.4.0"
authors = ["Laurenz <[email protected]>"]
edition = "2021"
repository = "https://github.com/typst/comemo"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["caching"]
keywords = ["incremental", "memoization", "tracked", "constraints"]
[workspace.dependencies]
comemo-macros = { version = "0.4.0", path = "macros" }
once_cell = "1.18"
parking_lot = "0.12"
proc-macro2 = "1"
quote = "1"
serial_test = "3"
siphasher = "1"
syn = { version = "2", features = ["full"] }
[package]
name = "comemo"
description = "Incremental computation through constrained memoization."
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
categories = { workspace = true }
keywords = { workspace = true }
[features]
default = []
testing = []
[dependencies]
comemo-macros = { workspace = true }
once_cell = { workspace = true }
parking_lot = { workspace = true }
siphasher = { workspace = true }
[dev-dependencies]
serial_test = { workspace = true }
[[test]]
name = "tests"
path = "tests/tests.rs"
required-features = ["testing"]