From 2bbc2fc144024b07a88ac12475a411edbf173ceb Mon Sep 17 00:00:00 2001 From: Aaron Kutch Date: Wed, 21 Feb 2024 17:14:32 -0600 Subject: [PATCH] update to `awint` 0.17 --- CHANGELOG.md | 3 +++ starlight/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 268df1c..5d817e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog ## [0.4.0] - TODO +### Crate +- `awint` 0.17 and `triple_arena` 0.13 + ### Changes - Removed the mimicking assertions from the `dag` module - Reworked the evaluation system to be event based, now there are `drive_with_delay` functions and diff --git a/starlight/Cargo.toml b/starlight/Cargo.toml index c6b9774..48f1544 100644 --- a/starlight/Cargo.toml +++ b/starlight/Cargo.toml @@ -12,8 +12,8 @@ keywords = ["dag", "rtl", "hdl"] categories = ["algorithms"] [dependencies] -awint = { path = "../../awint/awint", default-features = false, features = ["rand_support", "dag"] } -#awint = { version = "0.16", default-features = false, features = ["rand_support", "dag"] } +#awint = { path = "../../awint/awint", default-features = false, features = ["rand_support", "dag"] } +awint = { version = "0.17", default-features = false, features = ["rand_support", "dag"] } rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] } rand_xoshiro = { version = "0.6", default-features = false } thiserror = "1.0"