Skip to content

Commit 302c37e

Browse files
committed
fix(rust): remove unused cbork dependency for now
1 parent cc24f6d commit 302c37e

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

rust/catalyst-signed-doc-spec/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ workspace = true
1212

1313
[dependencies]
1414
catalyst-types = { version = "0.0.11", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "catalyst-types/v0.0.11" }
15-
cbork-cddl-parser = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "cbork-cddl-parser/v0.0.3" }
15+
#cbork-cddl-parser = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "cbork-cddl-parser/v0.0.3" }
1616

17-
serde_json = "1.0.142"
18-
anyhow = "1.0.99"
19-
serde = { version = "1.0.219", features = ["derive"] }
17+
serde_json = "1.0.145"
18+
anyhow = "1.0.100"
19+
serde = { version = "1.0.228", features = ["derive"] }
2020

2121
quote = "1.0"
2222
proc-macro2 = "1.0"
23-
build-info = "0.0.39"
23+
build-info = "0.0.42"
2424

2525
[build-dependencies]
26-
build-info-build = "0.0.39"
26+
build-info-build = "0.0.42"

specs/signed_doc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,12 @@
309309
"description": "An individual Elgamal group element that composes the elgamal cipher text.",
310310
"requires": []
311311
},
312+
"encrypted_tally": {
313+
"comment": "The Count of all Documents held by the SMT.",
314+
"def": "uint",
315+
"description": "The Count of all Documents held by the SMT.",
316+
"requires": []
317+
},
312318
"height": {
313319
"comment": "The consecutive sequence number of the current document \nin the chain.\nThe very first document in a sequence is numbered `0` and it\n*MUST ONLY* increment by one for each successive document in\nthe sequence.\n\nThe FINAL sequence number is encoded with the current height\nsequence value, negated. \n\nFor example the following values for height define a chain\nthat has 5 documents in the sequence 0-4, the final height \nis negated to indicate the end of the chain:\n`0, 1, 2, 3, -4`\n\nNo subsequent document can be chained to a sequence that has\na final chain height.",
314320
"def": "int",
@@ -335,6 +341,12 @@
335341
"def": "(\n (uint .eq (0 / 50 / 60 / 20000)) / \n (tstr .eq (\n \"application/cbor\" /\n \"application/cddl\" /\n \"application/json\" /\n \"application/schema+json\" /\n \"text/css; charset=utf-8\" /\n \"text/css; charset=utf-8; template=handlebars\" /\n \"text/html; charset=utf-8\" /\n \"text/html; charset=utf-8; template=handlebars\" /\n \"text/markdown; charset=utf-8\" /\n \"text/markdown; charset=utf-8; template=handlebars\" /\n \"text/plain; charset=utf-8\" /\n \"text/plain; charset=utf-8; template=handlebars\"\n ))\n)",
336342
"requires": []
337343
},
344+
"rejections": {
345+
"comment": "The Count of all Documents held by the SMT.",
346+
"def": "uint",
347+
"description": "The Count of all Documents held by the SMT.",
348+
"requires": []
349+
},
338350
"revocations": {
339351
"comment": "List of revoked versions of this document.",
340352
"def": "[ * document_ver ] / true ",

0 commit comments

Comments
 (0)