]> Repositorios git - scryer-prolog.git/log
scryer-prolog.git
3 years agoMerge pull request #1796 from triska/dif_si
Mark Thom [Sat, 22 Apr 2023 23:21:03 +0000 (17:21 -0600)]
Merge pull request #1796 from triska/dif_si

ADDED: dif_si/2

3 years agoADDED: dif_si/2
Markus Triska [Sat, 22 Apr 2023 22:37:03 +0000 (00:37 +0200)]
ADDED: dif_si/2

Source: https://stackoverflow.com/questions/20223390/prolog-a-person-is-a-sibling-of-himself

In Scryer Prolog, this is actually not needed, since Scryer Prolog provides
dif/2 in library(dif). However, it is still useful to provide dif_si/2 for two reasons:

  1) to more easily port code from systems where only dif_si/2 is available
  2) to provide correct disequality in other systems that adopt this library

3 years agoMerge pull request #1795 from infogulch/fix-ci-install
Mark Thom [Sat, 22 Apr 2023 22:03:39 +0000 (16:03 -0600)]
Merge pull request #1795 from infogulch/fix-ci-install

Use --force to install cargo2junit

3 years agoUse --force to install cargo2junit
infogulch [Sat, 22 Apr 2023 20:42:10 +0000 (15:42 -0500)]
Use --force to install cargo2junit

This probably appeared now because it's the first time this tool was cached
from a previous run.

3 years agoMerge pull request #1793 from infogulch/fix-action-ref
Mark Thom [Sat, 22 Apr 2023 17:26:45 +0000 (11:26 -0600)]
Merge pull request #1793 from infogulch/fix-action-ref

Change ref for `publish-unit-test-result-action`

3 years agoChange ref for `publish-unit-test-result-action`
infogulch [Sat, 22 Apr 2023 15:18:10 +0000 (10:18 -0500)]
Change ref for `publish-unit-test-result-action`

3 years agoMerge pull request #1789 from aarroyoc/uppercase
Mark Thom [Thu, 20 Apr 2023 05:17:09 +0000 (07:17 +0200)]
Merge pull request #1789 from aarroyoc/uppercase

library(charsio): add to_upper and to_lower

3 years agolibrary(charsio): add to_upper and to_lower
Adrián Arroyo Calle [Tue, 18 Apr 2023 16:48:59 +0000 (18:48 +0200)]
library(charsio): add to_upper and to_lower

3 years agoMerge pull request #1783 from infogulch/test
Mark Thom [Tue, 18 Apr 2023 06:35:45 +0000 (08:35 +0200)]
Merge pull request #1783 from infogulch/test

Refactor CI Workflow

3 years agoRefactor CI Workflow
infogulch [Thu, 13 Apr 2023 00:15:06 +0000 (19:15 -0500)]
Refactor CI Workflow

* Rename the workflow from Test to CI, since it does more than tests
* Run logtalk tests in a separate job to improve isolation
* Publish all xunit/junit test files as build artifacts to be consumed
  by a separate publishing workflow.
* Add "job summary" feature to show a formatted summary of the test
  results on the job summary status page
* Run the CI job once every Wed to ensure that there are always some
  recent builds on master that haven't expired.

3 years agoMerge pull request #1785 from mthom/dependabot/cargo/h2-0.3.17
Mark Thom [Fri, 14 Apr 2023 04:22:32 +0000 (06:22 +0200)]
Merge pull request #1785 from mthom/dependabot/cargo/h2-0.3.17

Bump h2 from 0.3.15 to 0.3.17

3 years agoMerge pull request #1786 from triska/tuples_in
Mark Thom [Fri, 14 Apr 2023 04:22:18 +0000 (06:22 +0200)]
Merge pull request #1786 from triska/tuples_in

FIXED: propagation for ground tuples

3 years agoFIXED: propagation for ground tuples
Markus Triska [Thu, 13 Apr 2023 21:38:55 +0000 (23:38 +0200)]
FIXED: propagation for ground tuples

Example:

    ?- tuples_in([[A,A]],[[0,1],[2,0]]).
       false.

See https://github.com/triska/clpz/issues/22.

3 years agoBump h2 from 0.3.15 to 0.3.17
dependabot[bot] [Thu, 13 Apr 2023 17:03:50 +0000 (17:03 +0000)]
Bump h2 from 0.3.15 to 0.3.17

Bumps [h2](https://github.com/hyperium/h2) from 0.3.15 to 0.3.17.
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hyperium/h2/compare/v0.3.15...v0.3.17)

---
updated-dependencies:
- dependency-name: h2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
3 years agoMerge pull request #1780 from triska/tuples_in
Mark Thom [Wed, 12 Apr 2023 17:10:50 +0000 (19:10 +0200)]
Merge pull request #1780 from triska/tuples_in

Various improvements to tuples_in/2

3 years agoFIXED: enforce equality also for ground elements in tuples
Markus Triska [Tue, 11 Apr 2023 20:31:09 +0000 (22:31 +0200)]
FIXED: enforce equality also for ground elements in tuples

Example:

    ?- tuples_in([[A,B]], [[1,2],[3,4]]),
       tuples_in([[A,B]], [[3,2]]).
       false.

See https://github.com/SWI-Prolog/swipl-devel/issues/1160.

3 years agodo not create attributed variables for ground tuples
Markus Triska [Tue, 11 Apr 2023 19:24:34 +0000 (21:24 +0200)]
do not create attributed variables for ground tuples

3 years agoactually disable and reenable the queue
Markus Triska [Tue, 11 Apr 2023 19:19:10 +0000 (21:19 +0200)]
actually disable and reenable the queue

3 years agoremove no longer needed clpz_relation attributes
Markus Triska [Tue, 11 Apr 2023 19:16:02 +0000 (21:16 +0200)]
remove no longer needed clpz_relation attributes

3 years agodo not leave an attribute when (re-)enabling a queue
Markus Triska [Tue, 11 Apr 2023 19:14:18 +0000 (21:14 +0200)]
do not leave an attribute when (re-)enabling a queue

3 years agoMerge pull request #1776 from infogulch/master
Mark Thom [Fri, 7 Apr 2023 04:09:08 +0000 (06:09 +0200)]
Merge pull request #1776 from infogulch/master

Add iso prolog / logtalk tests to test runner

3 years agoAllow the test suite to fail without failing the build
infogulch [Thu, 6 Apr 2023 14:40:03 +0000 (09:40 -0500)]
Allow the test suite to fail without failing the build

3 years agoAdd logtalk test suite
infogulch [Sun, 2 Apr 2023 20:47:02 +0000 (15:47 -0500)]
Add logtalk test suite

3 years agoTest workflow cleanup; switch to macos-11
infogulch [Sun, 2 Apr 2023 19:47:52 +0000 (14:47 -0500)]
Test workflow cleanup; switch to macos-11

3 years agoMerge pull request #1772 from triska/number_chars
Mark Thom [Sun, 2 Apr 2023 17:24:59 +0000 (19:24 +0200)]
Merge pull request #1772 from triska/number_chars

FIXED: number_chars(N, "0' "), addressing #1580.

3 years agoMerge pull request #1774 from infogulch/master
Mark Thom [Sun, 2 Apr 2023 17:24:36 +0000 (19:24 +0200)]
Merge pull request #1774 from infogulch/master

Optimize Test GH action

3 years agoFIXED: number_chars(N, "0' "), addressing #1580.
Markus Triska [Sat, 1 Apr 2023 18:29:02 +0000 (20:29 +0200)]
FIXED: number_chars(N, "0' "), addressing #1580.

There may be a more elegant way to solve this.

3 years agoAdd cache step to test workflow
infogulch [Sat, 1 Apr 2023 23:11:35 +0000 (18:11 -0500)]
Add cache step to test workflow

3 years agoMerge pull request #1770 from triska/doc
Mark Thom [Sat, 1 Apr 2023 21:28:19 +0000 (23:28 +0200)]
Merge pull request #1770 from triska/doc

Smaller documentation improvements to explain compilation and target directory

3 years agoDOC: link to "Indexing dif/2"
Markus Triska [Sat, 1 Apr 2023 08:42:58 +0000 (10:42 +0200)]
DOC: link to "Indexing dif/2"

3 years agoDOC: explain location of scryer-prolog after compilation
Markus Triska [Sat, 1 Apr 2023 08:42:13 +0000 (10:42 +0200)]
DOC: explain location of scryer-prolog after compilation

This question was recently raised on the #scryer IRC channel.

3 years agouse the release flag so that the instructions can be used verbatim
Markus Triska [Sat, 1 Apr 2023 08:59:32 +0000 (10:59 +0200)]
use the release flag so that the instructions can be used verbatim

Also, the location of the executable depends on this flag.

3 years agochange "run" to "build", since "run" leads to a Scryer prompt which can be unexpected
Markus Triska [Sat, 1 Apr 2023 08:50:32 +0000 (10:50 +0200)]
change "run" to "build", since "run" leads to a Scryer prompt which can be unexpected

3 years agoMerge pull request #1769 from triska/show_pending_constraints
Mark Thom [Fri, 31 Mar 2023 02:51:34 +0000 (04:51 +0200)]
Merge pull request #1769 from triska/show_pending_constraints

ENHANCED: use call_residue_vars/2 to show all pending constraints

3 years agoENHANCED: use call_residue_vars/2 to show all pending constraints
Markus Triska [Thu, 30 Mar 2023 21:29:49 +0000 (23:29 +0200)]
ENHANCED: use call_residue_vars/2 to show all pending constraints

Example:

    ?- freeze(_, false).
       freeze:freeze(_A,false).

This was originally added in 04ba9bc11af31780cd8fa259d78d151262c3c756,
then reverted, and is now restored.

3 years agobroaden the definition of alpha_char! (#1749, #1515, #1591)
Mark Thom [Sat, 25 Mar 2023 23:22:16 +0000 (17:22 -0600)]
broaden the definition of alpha_char! (#1749, #1515, #1591)

3 years agoMerge pull request #1765 from mthom/dependabot/cargo/openssl-0.10.48
Mark Thom [Sat, 25 Mar 2023 05:20:00 +0000 (06:20 +0100)]
Merge pull request #1765 from mthom/dependabot/cargo/openssl-0.10.48

Bump openssl from 0.10.42 to 0.10.48

3 years agoBump openssl from 0.10.42 to 0.10.48
dependabot[bot] [Sat, 25 Mar 2023 01:27:40 +0000 (01:27 +0000)]
Bump openssl from 0.10.42 to 0.10.48

Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.42 to 0.10.48.
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.42...openssl-v0.10.48)

---
updated-dependencies:
- dependency-name: openssl
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
3 years agoadd '$unattributed_var' builtin (#1758)
Mark Thom [Sun, 19 Mar 2023 05:08:09 +0000 (23:08 -0600)]
add '$unattributed_var' builtin (#1758)

3 years agoMerge pull request #1759 from triska/better_queue
Mark Thom [Thu, 16 Mar 2023 03:34:33 +0000 (04:34 +0100)]
Merge pull request #1759 from triska/better_queue

Better queue

3 years agoremove no longer needed queue attributes after propagation
Markus Triska [Wed, 15 Mar 2023 20:17:06 +0000 (21:17 +0100)]
remove no longer needed queue attributes after propagation

3 years agoshow remaining queue/2 attributes as residual goals
Markus Triska [Wed, 15 Mar 2023 18:56:02 +0000 (19:56 +0100)]
show remaining queue/2 attributes as residual goals

This lets us verify that all attributes are correctly removed earlier.

3 years agoRevert "correct call_residue_vars/3 using new copy_term_3 (#1239)"
Mark Thom [Wed, 15 Mar 2023 03:34:49 +0000 (21:34 -0600)]
Revert "correct call_residue_vars/3 using new copy_term_3 (#1239)"

This reverts commit 9b35a316c9a01e7897490b58c222093959a21de4.

3 years agoRevert "use new call_residue_vars/2 in toplevel.pl (#847)"
Mark Thom [Wed, 15 Mar 2023 03:34:48 +0000 (21:34 -0600)]
Revert "use new call_residue_vars/2 in toplevel.pl (#847)"

This reverts commit 04ba9bc11af31780cd8fa259d78d151262c3c756.

3 years agouse new call_residue_vars/2 in toplevel.pl (#847)
Mark Thom [Sun, 12 Mar 2023 22:59:03 +0000 (16:59 -0600)]
use new call_residue_vars/2 in toplevel.pl (#847)

3 years agocorrect call_residue_vars/3 using new copy_term_3 (#1239)
Mark Thom [Sun, 12 Mar 2023 20:14:29 +0000 (14:14 -0600)]
correct call_residue_vars/3 using new copy_term_3 (#1239)

3 years agoMerge pull request #1757 from aarroyoc/fix-docs-1756
Mark Thom [Sun, 12 Mar 2023 17:26:54 +0000 (18:26 +0100)]
Merge pull request #1757 from aarroyoc/fix-docs-1756

DOCS: Fixes #1756

3 years agoFixes #1756
Adrián Arroyo Calle [Sun, 12 Mar 2023 15:47:20 +0000 (16:47 +0100)]
Fixes #1756

3 years agoMerge pull request #1755 from triska/doc
Mark Thom [Fri, 10 Mar 2023 01:40:29 +0000 (02:40 +0100)]
Merge pull request #1755 from triska/doc

various smaller documentation improvements

3 years agouse actual toplevel answers
Markus Triska [Wed, 8 Mar 2023 22:35:11 +0000 (23:35 +0100)]
use actual toplevel answers

3 years agouse string notation as discussed on #scryer IRC
Markus Triska [Wed, 8 Mar 2023 22:32:05 +0000 (23:32 +0100)]
use string notation as discussed on #scryer IRC

3 years agoitems --> elements
Markus Triska [Wed, 8 Mar 2023 22:31:02 +0000 (23:31 +0100)]
items --> elements

This addresses #1740.

3 years agoMerge pull request #1754 from triska/dif
Mark Thom [Wed, 8 Mar 2023 20:48:34 +0000 (21:48 +0100)]
Merge pull request #1754 from triska/dif

ENHANCED: more compact definition of dif/2

3 years agoFIXED: Take all variables into account during goal projection.
Markus Triska [Wed, 8 Mar 2023 20:16:54 +0000 (21:16 +0100)]
FIXED: Take all variables into account during goal projection.

This addresses #1751.

3 years agoENHANCED: more compact definition of dif/2
Markus Triska [Wed, 8 Mar 2023 19:50:33 +0000 (20:50 +0100)]
ENHANCED: more compact definition of dif/2

As outlined in #1753.

3 years agoMerge pull request #1744 from aarroyoc/ffi
Mark Thom [Thu, 2 Mar 2023 20:57:56 +0000 (21:57 +0100)]
Merge pull request #1744 from aarroyoc/ffi

Foreign Function Interface - library(ffi)

3 years agoFill more cases
Adrián Arroyo Calle [Wed, 1 Mar 2023 21:10:26 +0000 (22:10 +0100)]
Fill more cases

3 years agoMerge branch 'master' into ffi
Adrián Arroyo Calle [Tue, 28 Feb 2023 21:10:40 +0000 (22:10 +0100)]
Merge branch 'master' into ffi

3 years agoFFI: Documentation
Adrián Arroyo Calle [Mon, 27 Feb 2023 19:02:21 +0000 (20:02 +0100)]
FFI: Documentation

3 years agoinvoke '$default_attr_list' in project_attributes.pl (#1748)
Mark Thom [Mon, 27 Feb 2023 05:41:38 +0000 (22:41 -0700)]
invoke '$default_attr_list' in project_attributes.pl (#1748)

3 years agothird argument of copy_term should be instantiated as a list (#1747)
Mark Thom [Sun, 26 Feb 2023 23:29:39 +0000 (16:29 -0700)]
third argument of copy_term should be instantiated as a list (#1747)

3 years agoMerge pull request #1746 from triska/type_over_instantiation_error
Mark Thom [Sun, 26 Feb 2023 22:46:23 +0000 (23:46 +0100)]
Merge pull request #1746 from triska/type_over_instantiation_error

ENHANCED: must_be/2: prefer type error over instantiation error

3 years agoENHANCED: must_be/2: prefer type error over instantiation error
Markus Triska [Sun, 26 Feb 2023 21:27:06 +0000 (22:27 +0100)]
ENHANCED: must_be/2: prefer type error over instantiation error

This addresses #1594.

3 years agoFFI: Nested structs
Adrián Arroyo Calle [Sun, 26 Feb 2023 19:48:00 +0000 (20:48 +0100)]
FFI: Nested structs

3 years agoadd, implement and use the Unifier trait
Mark Thom [Sun, 26 Feb 2023 04:52:18 +0000 (21:52 -0700)]
add, implement and use the Unifier trait

3 years agoMacroization of the code
Adrián Arroyo Calle [Sat, 25 Feb 2023 21:27:28 +0000 (22:27 +0100)]
Macroization of the code

3 years agoMerge pull request #1743 from triska/rely_on_indexing
Mark Thom [Sat, 25 Feb 2023 18:23:59 +0000 (19:23 +0100)]
Merge pull request #1743 from triska/rely_on_indexing

rely on first instantiated argument indexing

3 years agorely on first instantiated argument indexing
Markus Triska [Sat, 25 Feb 2023 09:17:55 +0000 (10:17 +0100)]
rely on first instantiated argument indexing

This great improvement to indexing allows much more natural
definitions of virtually all meta-predicates. Many thanks to @notoria!

3 years agoMerge pull request #1741 from triska/clpz_residuals
Mark Thom [Thu, 23 Feb 2023 00:51:22 +0000 (01:51 +0100)]
Merge pull request #1741 from triska/clpz_residuals

in projection of residual goals, mark considered propagators as processed

3 years agoDOC: update residual goals
Markus Triska [Wed, 22 Feb 2023 23:10:26 +0000 (00:10 +0100)]
DOC: update residual goals

3 years agoin projection of residual goals, mark considered propagators as processed
Markus Triska [Wed, 22 Feb 2023 20:05:31 +0000 (21:05 +0100)]
in projection of residual goals, mark considered propagators as processed

This is to avoid duplicated goals with the new projection mechanism.

3 years agoMVP of Foreign Function Interface
Adrián Arroyo Calle [Wed, 22 Feb 2023 22:10:03 +0000 (23:10 +0100)]
MVP of Foreign Function Interface

3 years agoassign responsibility for emitting dif goal to the first variable of the left-hand...
Mark Thom [Wed, 22 Feb 2023 03:53:13 +0000 (20:53 -0700)]
assign responsibility for emitting dif goal to the first variable of the left-hand term (#1739)

3 years agocatch attribute_goals errors in copy_term/3, don't discard variable module qualifiers...
Mark Thom [Tue, 21 Feb 2023 07:50:31 +0000 (00:50 -0700)]
catch attribute_goals errors in copy_term/3, don't discard variable module qualifiers in dcg_body/3 (#1738)

3 years agoMerge pull request #1737 from triska/link_to_homepage
Mark Thom [Mon, 20 Feb 2023 20:10:01 +0000 (21:10 +0100)]
Merge pull request #1737 from triska/link_to_homepage

add link to newly available homepage

3 years agoadd link to newly available homepage
Markus Triska [Mon, 20 Feb 2023 19:09:47 +0000 (20:09 +0100)]
add link to newly available homepage

Many thanks to @aarroyoc for the documentation system, and for hosting the page!

3 years agoChanged the links for the delimited continuations papers and the precise garbage...
Robert Jacobson [Mon, 20 Feb 2023 01:10:21 +0000 (20:10 -0500)]
Changed the links for the delimited continuations papers and the precise garbage collection paper.

3 years agoAdded links to referenced research papers in the Phase 2 and Nice to Have Features...
Robert Jacobson [Sat, 18 Feb 2023 20:49:42 +0000 (15:49 -0500)]
Added links to referenced research papers in the Phase 2 and Nice to Have Features sections.

3 years agochange '$delete_all_attributes' to '$delete_all_attributes_from_var'
Mark Thom [Sat, 18 Feb 2023 21:12:07 +0000 (14:12 -0700)]
change '$delete_all_attributes' to '$delete_all_attributes_from_var'

3 years agoadd '$delete_all_attributes', use copy_term/3 as defined in #1272
Mark Thom [Sat, 18 Feb 2023 09:15:24 +0000 (02:15 -0700)]
add '$delete_all_attributes', use copy_term/3 as defined in #1272

3 years agocompile '$atts' and '$project_atts' modules using loader.pl
Mark Thom [Sat, 18 Feb 2023 02:20:28 +0000 (19:20 -0700)]
compile '$atts' and '$project_atts'  modules using loader.pl

3 years agokeep phrase goal qualified even if qualifier is a variable
Mark Thom [Fri, 17 Feb 2023 07:20:15 +0000 (00:20 -0700)]
keep phrase goal qualified even if qualifier is a variable

3 years agocorrect incremental compilation bugs
Mark Thom [Mon, 13 Feb 2023 06:41:25 +0000 (23:41 -0700)]
correct incremental compilation bugs

3 years agocopy attributed variable attribute lists specially via copy_attr_var_list
Mark Thom [Mon, 13 Feb 2023 00:16:02 +0000 (17:16 -0700)]
copy attributed variable attribute lists specially via copy_attr_var_list

3 years agoretire TrailedAttrVarHeapLink TrailEntry tag
Mark Thom [Sat, 11 Feb 2023 05:35:41 +0000 (22:35 -0700)]
retire TrailedAttrVarHeapLink TrailEntry tag

3 years agosimplify and optimize attributed variables (#1590, #1634, #1730)
Mark Thom [Fri, 10 Feb 2023 07:09:22 +0000 (00:09 -0700)]
simplify and optimize attributed variables (#1590, #1634, #1730)

3 years agoport '$get_from_list' to '$get_from_attr_list' in Rust
Mark Thom [Mon, 6 Feb 2023 08:23:29 +0000 (01:23 -0700)]
port '$get_from_list' to '$get_from_attr_list' in Rust

3 years agoinclude wambook errata
Mark Thom [Sun, 5 Feb 2023 01:14:16 +0000 (18:14 -0700)]
include wambook errata

3 years agocorrect shl stub_gen
Mark Thom [Sat, 4 Feb 2023 05:27:08 +0000 (22:27 -0700)]
correct shl stub_gen

3 years agoMerge pull request #1734 from triska/clpz_corrections
Mark Thom [Sat, 4 Feb 2023 04:49:11 +0000 (05:49 +0100)]
Merge pull request #1734 from triska/clpz_corrections

DOC: teletype font for reification

3 years agoDOC: teletype font for reification
Markus Triska [Fri, 3 Feb 2023 19:44:11 +0000 (20:44 +0100)]
DOC: teletype font for reification

3 years agoshift by usize instead of u32 in shl and shr (#1718, #1719)
Mark Thom [Fri, 3 Feb 2023 03:49:14 +0000 (20:49 -0700)]
shift by usize instead of u32 in shl and shr (#1718, #1719)

3 years agoMerge pull request #1732 from aarroyoc/docs-minor-fixes
Mark Thom [Fri, 3 Feb 2023 00:58:52 +0000 (01:58 +0100)]
Merge pull request #1732 from aarroyoc/docs-minor-fixes

Minor fixes to docs

3 years agoMinor fixes to docs
Adrián Arroyo Calle [Thu, 2 Feb 2023 20:35:35 +0000 (21:35 +0100)]
Minor fixes to docs

3 years agoMerge pull request #1731 from triska/clpz_corrections
Mark Thom [Thu, 2 Feb 2023 05:26:08 +0000 (06:26 +0100)]
Merge pull request #1731 from triska/clpz_corrections

correct DocLog ~/.scryerrc rendering

3 years agoMerge pull request #1729 from aarroyoc/negative-shifts
Mark Thom [Thu, 2 Feb 2023 05:25:52 +0000 (06:25 +0100)]
Merge pull request #1729 from aarroyoc/negative-shifts

Negative shifts (fixes #1719 and #1718)

3 years agocorrect DocLog ~/.scryerrc rendering
Markus Triska [Wed, 1 Feb 2023 22:26:52 +0000 (23:26 +0100)]
correct DocLog ~/.scryerrc rendering

3 years agoavoid arena allocation of stream in read_term_from_chars (#1266)
Mark Thom [Tue, 31 Jan 2023 07:15:57 +0000 (00:15 -0700)]
avoid arena allocation of stream in read_term_from_chars (#1266)

3 years agoupdate tokio version
Mark Thom [Tue, 24 Jan 2023 23:17:03 +0000 (16:17 -0700)]
update tokio version

3 years agoNegative shifts (fixes #1719 and #1718)
Adrián Arroyo Calle [Mon, 30 Jan 2023 17:56:37 +0000 (18:56 +0100)]
Negative shifts (fixes #1719 and #1718)