-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (35 loc) · 1.12 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
[package]
name = "hdk_crud"
description = "A library to help quickly and easily create a consistent set of create-read-update-delete functions for an Entry type in Holochain, complete with signaling options"
version = "0.14.0"
license = "CAL-1.0"
repository = "https://github.com/lightningrodlabs/hdk_crud"
authors = ["Connor Turland <connor@sprillow.com>", "Wesley Finck <wesleyfinck@gmail.com"]
edition = "2021"
[dependencies]
hdk = "0.4.0-rc"
holo_hash = { version = "0.4.0-rc", features = ["encoding"] }
paste = "1.0.15"
serde = "1.0.203"
thiserror = "1"
mockall = "0.9"
fixt = { version = "0.4.0-rc", optional = true }
mockall_double = { version = "0.2.0", optional = true }
# specific so as to avoid wasm-bindgen dependency
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
assert_matches = "1.5.0"
holochain_types = { version = "0.4.0-rc", optional = true }
[dev-dependencies]
rand = "0.7"
strum = "0.18.0"
strum_macros = "0.18.0"
[features]
mock = [
"hdk/mock",
"hdk/test_utils",
"fixt",
"mockall_double",
"holochain_types"
]
no_example = []
test_utils = ["fixt"]