Skip to content

Commit e3608f6

Browse files
committed
Break core code into modules
1 parent b106cbd commit e3608f6

13 files changed

+1061
-1039
lines changed

.github/workflows/rust.yml

+6
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,9 @@ jobs:
1616
run: cargo build --verbose
1717
- name: Run tests
1818
run: cargo test --verbose
19+
- name: Run tests with zeroize
20+
run: cargo test --verbose --features zeroize
21+
- name: Run tests with use-unsafe
22+
run: cargo test --verbose --features use-unsafe
23+
- name: Run tests with all features
24+
run: cargo test --verbose --all-features

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fixed-bigint"
3-
version = "0.1.11"
3+
version = "0.1.12"
44
authors = ["kaidokert <[email protected]>"]
55
documentation = "https://docs.rs/fixed-bigint"
66
edition = "2018"

0 commit comments

Comments
 (0)