-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove some transmutes to preclude technical UB * medium term ci test for const support * first step of upgrading to `triple_arena` v0.10 * Replace bimap with `OrdArena`, add `Bits::total_cmp` and `OrdBits` * Update Cargo.toml * Update consts.rs * Use the "custom" DST hack * fix bugs * remove old issues * ci fixes * implement `Error` for `EvalError` * fix doc links * triple_arena 0.11 * Version 0.12.0
- Loading branch information
1 parent
6b1263d
commit 74f41a5
Showing
43 changed files
with
1,040 additions
and
988 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "awint" | ||
# note: when bumping versions, update `rust-version` in `awint_internals/Cargo.toml` and in | ||
# `ci.yml`, and add date to changelog | ||
version = "0.11.0" # no 1.0 at least until `const_support` is all stabilized | ||
version = "0.12.0" # no 1.0 at least until `const_support` is all stabilized | ||
edition = "2021" | ||
authors = ["Aaron Kutch <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -14,11 +14,11 @@ keywords = ["int", "integer", "big", "math", "no_std"] | |
categories = ["data-structures", "mathematics", "algorithms", "no-std"] | ||
|
||
[dependencies] | ||
awint_core = { version = "0.11.0", path = "../awint_core", default-features = false } | ||
awint_dag = { version = "0.11.0", path = "../awint_dag", default-features = false, optional = true } | ||
awint_ext = { version = "0.11.0", path = "../awint_ext", default-features = false, optional = true } | ||
awint_macro_internals = { version = "0.11.0", path = "../awint_macro_internals", default-features = false, optional = true } | ||
awint_macros = { version = "0.11.0", path = "../awint_macros" } | ||
awint_core = { version = "0.12.0", path = "../awint_core", default-features = false } | ||
awint_dag = { version = "0.12.0", path = "../awint_dag", default-features = false, optional = true } | ||
awint_ext = { version = "0.12.0", path = "../awint_ext", default-features = false, optional = true } | ||
awint_macro_internals = { version = "0.12.0", path = "../awint_macro_internals", default-features = false, optional = true } | ||
awint_macros = { version = "0.12.0", path = "../awint_macros" } | ||
|
||
# note: running the tests requires `--all-features` | ||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "awint_core" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
authors = ["Aaron Kutch <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -12,7 +12,7 @@ keywords = ["int", "integer", "big", "math", "no_std"] | |
categories = ["data-structures", "mathematics", "algorithms", "no-std"] | ||
|
||
[dependencies] | ||
awint_internals = { version = "0.11.0", path = "../awint_internals", default-features = false } | ||
awint_internals = { version = "0.12.0", path = "../awint_internals", default-features = false } | ||
const_fn = "0.4" | ||
rand_core = { version = "0.6", default-features = false, optional = true } | ||
serde = { version = "1.0", default-features = false, optional = true } | ||
|
@@ -27,7 +27,7 @@ ron = "0.8" | |
[features] | ||
default = [] | ||
# Turns on nightly features required for many functions to be marked `const` | ||
const_support = [] | ||
const_support = ["awint_internals/const_support"] | ||
# Turns on `rand` support | ||
rand_support = ["rand_core"] | ||
# Turns on `serde` support | ||
|
Oops, something went wrong.