-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (69 loc) · 2.17 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (69 loc) · 2.17 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
77
78
79
80
[package]
name = "hugr-core"
version = "0.21.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
readme = "README.md"
documentation = "https://docs.rs/hugr/"
homepage = { workspace = true }
repository = { workspace = true }
description = "Quantinuum's Hierarchical Unified Graph Representation"
keywords = ["Quantum", "Quantinuum"]
categories = ["compilers"]
[lints]
workspace = true
[features]
declarative = ["serde_yaml"]
zstd = ["dep:zstd"]
[lib]
bench = false
[[test]]
name = "model"
[[test]]
name = "persistent_walker_example"
[dependencies]
hugr-model = { version = "0.21.0", path = "../hugr-model" }
cgmath = { workspace = true, features = ["serde"] }
delegate = { workspace = true }
derive_more = { workspace = true, features = [
"display",
"error",
"from",
"into",
] }
downcast-rs = { workspace = true }
enum_dispatch = { workspace = true }
fxhash.workspace = true
html-escape = { workspace = true }
indexmap.workspace = true
itertools = { workspace = true }
lazy_static = { workspace = true }
paste = { workspace = true }
petgraph = { workspace = true }
portgraph = { workspace = true, features = ["serde", "petgraph"] }
regex = { workspace = true }
# Rc used here for Extension, but unfortunately we must turn the feature on globally
serde = { workspace = true, features = ["derive", "rc"] }
serde_json = { workspace = true }
serde_with = { workspace = true }
serde_yaml = { workspace = true, optional = true }
smol_str = { workspace = true, features = ["serde"] }
static_assertions = { workspace = true }
strum = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
typetag = { workspace = true }
semver = { workspace = true, features = ["serde"] }
zstd = { workspace = true, optional = true }
relrc = { workspace = true, features = ["petgraph"] }
[dev-dependencies]
rstest = { workspace = true }
cool_asserts = { workspace = true }
insta = { workspace = true, features = ["yaml"] }
jsonschema = { workspace = true }
proptest = { workspace = true }
proptest-derive = { workspace = true }
# Required for documentation examples
hugr = { path = "../hugr" }
serde_yaml = "0.9.34"
anyhow = { workspace = true }