-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
49 lines (44 loc) · 1.04 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
[package]
name = "michie"
version = "3.0.2"
edition = "2021"
description = "An attribute macro that adds memoization to a function (sounds like Mickey)"
repository = "https://github.com/mobusoperandi/michie"
license = "MIT"
keywords = [
"memoization",
"memoisation",
"memoize",
"memoise",
"cache",
]
categories = [
"caching",
]
include = [
"/README.md",
"/src/**/*.rs",
"/tests/**/*.rs",
"/tests/compile_fail/*.stderr"
]
[workspace]
members = [
"macro"
]
[dependencies]
michie-macro = { path = "macro", version = "3.0.2" }
[dev-dependencies]
cargo_toml = "0.15.2"
itertools = "0.10.3"
jql = "5.1.1"
markdown = "0.3.0"
regex = "1.5.5"
semver = "1.0.9"
trybuild = "1.0.56"
[package.metadata.bin]
cargo-binstall = { version = "1.2.1", locked = true }
cargo-make = { version = "0.36.13", locked = true, bins = ["makers"] }
conventional_commits_linter = { version = "0.12.3", locked = true }
markdown-toc = { version = "0.2.0", locked = true, bins = ["md-toc"] }
sd = { version = "0.7.6", locked = true }
[features]