We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17c093 commit 341d47cCopy full SHA for 341d47c
.github/workflows/ci.yml
@@ -54,6 +54,10 @@ jobs:
54
with:
55
tool: just,nextest
56
57
+ - name: Work around MSRV issues
58
+ if: matrix.toolchain.name == 'msrv'
59
+ run: just downgrade-for-msrv
60
+
61
- name: Test
62
run: just test
63
CHANGELOG.md
@@ -2,8 +2,13 @@
2
3
## Unreleased
4
5
+## v2.0.0-beta.1
6
7
+- Add support for `no_std` targets.
8
- Use IEC (binary) format by default with `Display`.
9
- Use "kB" for SI unit.
10
+- Add `Display` type for customizing printed format.
11
+- Add `ByteSize::display()` method.
12
- Implement `Sub<ByteSize>` for `ByteSize`.
13
- Implement `Sub<impl Into<u64>>` for `ByteSize`.
14
- Implement `SubAssign<ByteSize>` for `ByteSize`.
0 commit comments