This repository was archived by the owner on Jan 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (71 loc) · 2.27 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (71 loc) · 2.27 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "protoflow-blocks"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
#documentation.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
publish.workspace = true
[features]
default = ["all", "std"]
all = ["hash", "rand", "serde", "sysml", "tracing"]
hash = ["hash-blake3", "hash-md5", "hash-sha1", "hash-sha2"]
hash-blake3 = ["dep:blake3"]
hash-md5 = ["dep:md-5"]
hash-sha1 = ["dep:sha1"]
hash-sha2 = ["dep:sha2"]
rand = ["protoflow-core/rand"]
std = [
"protoflow-core/std",
"chrono/std",
"blake3?/std",
"serde?/std",
"sysml-model?/std",
"tracing?/std",
]
serde = [
"duration-str/serde",
"protoflow-core/serde",
"ubyte/serde",
"dep:serde",
"dep:serde_yml",
]
sysml = ["protoflow-core/sysml", "dep:sysml-model"]
tokio = ["protoflow-core/tokio", "dep:tokio"]
tracing = ["protoflow-core/tracing", "dep:tracing"]
unstable = ["protoflow-core/unstable", "protoflow-derive/unstable"]
[build-dependencies]
cfg_aliases.workspace = true
[dependencies]
blake3 = { version = "1.5", default-features = false, optional = true }
duration-str = { version = "0.11", default-features = false }
enum-iterator = "2.1"
md-5 = { version = "0.10.6", default-features = false, optional = true }
protoflow-core.workspace = true
protoflow-derive.workspace = true
tokio = { version = "1.40.0", default-features = false, optional = true }
tracing = { version = "0.1", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, features = [
"derive",
], optional = true }
serde_yml = { version = "0.0.12", optional = true }
sha1 = { version = "0.10.6", default-features = false, optional = true }
sha2 = { version = "0.10.8", default-features = false, optional = true }
simple-mermaid = "0.1"
stability = "0.2"
struson = "0.5"
sysml-model = { version = "=0.2.3", default-features = false, optional = true }
ubyte = { version = "0.10", default-features = false }
csv = "1.3.1"
chrono = { version = "0.4.39", default-features = false, features = ["now"] }
[dev-dependencies]
bytes = "1.8.0"
protoflow-derive.workspace = true
tempfile = "3.13.0"