Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cbor-edn package to 1.1.0 #64

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions packages/cbor-diag/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
package:
name: cbor-diag
version: 1.0.1
version: 1.1.0
top-level:
- cbor_diag
source:
url: https://files.pythonhosted.org/packages/94/87/29ce613f876cd0ceb99ed1db71f7e3d90460c1babd2133ce30f18d5f540d/cbor_diag-1.0.1.tar.gz
sha256: 77e25a27681d59b0074a07aa494da0ab71f0ea6a826a2fd28167048d08a7ebcc
build:
script: |
cargo update -p proc-macro2 --precise 1.0.60
url: https://files.pythonhosted.org/packages/db/f6/9921162053f195eaa7e22cae9172e0d3bdda62282d76480163d1de872f35/cbor_diag-1.1.0.tar.gz
sha256: 78a85ab1165c43d224dc6b93e1ee791aec2f392c55d219d11937f78974f4e6c3
requirements:
executable:
- rustup
Expand Down
4 changes: 3 additions & 1 deletion packages/cbor-diag/test_cbor_diag.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
def test_cbor_diag(selenium_standalone):
from cbor_diag import diag2cbor

assert diag2cbor('{1: "hello"}') == bytes.fromhex("a1016568656c6c6f")
assert diag2cbor("{1: test'hello'}", to999=True) == bytes.fromhex(
"a101d903e78264746573746568656c6c6f"
)