-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
46 lines (40 loc) · 1.38 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
[package]
name = "homestar-workflow"
version = { workspace = true }
description = "Homestar library for working with workflows centered around UCAN invocations"
keywords = ["ipld", "ipvm", "ucan", "workflow"]
categories = { workspace = true }
license = { workspace = true }
readme = "README.md"
edition = { workspace = true }
rust-version = { workspace = true }
documentation = "https://docs.rs/homestar-workflow"
repository = "https://github.com/ipvm-wg/homestar/tree/main/homestar-workflow"
authors = { workspace = true }
[lib]
path = "src/lib.rs"
bench = false
doctest = true
[dependencies]
fxhash = { version = "0.2", default-features = false }
homestar-invocation = { version = "0.3", path = "../homestar-invocation" }
homestar-workspace-hack = { workspace = true }
indexmap = { workspace = true }
libipld = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
[dev-dependencies]
homestar-invocation = { version = "0.3", path = "../homestar-invocation", features = [
"test-utils",
] }
json = "0.12"
serde_json = { version = "1.0", default-features = false }
[package.metadata.docs.rs]
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.cargo-machete]
ignored = ["homestar-workspace-hack"]
[package.metadata.cargo-udeps.ignore]
normal = ["homestar-workspace-hack"]