Skip to content

Commit 653adda

Browse files
authored
v0.6
- Added hyper_stream module (Combined writer-reader) - Added tests - Simplified existing tests - Fixed docs for read_u8
1 parent 5108bb0 commit 653adda

File tree

5 files changed

+3042
-2804
lines changed

5 files changed

+3042
-2804
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
[package]
2-
name = "hyper_byte"
3-
version = "0.5.1"
4-
license = "MIT"
5-
authors = ["EasternGamer"]
6-
edition = "2024"
7-
description = "An unsafe, near-zero cost (1-2 instructions) byte transmuter to numeric types with fast byte reader"
8-
keywords = ["unsafe", "byte", "convert", "numeric"]
9-
repository = "https://github.com/EasternGamer/hyper_byte"
10-
readme = "README.md"
11-
exclude = [
12-
".idea/*"
13-
]
14-
15-
[profile.release]
16-
opt-level = 3
17-
overflow-checks = false
18-
lto = true
19-
codegen-units = 1
20-
debug = true
21-
22-
[dependencies]
23-
half = { version = "2.6.0", optional = true }
24-
25-
[features]
26-
half = ["dep:half"]
27-
28-
[dev-dependencies]
1+
[package]
2+
name = "hyper_byte"
3+
version = "0.6.0"
4+
license = "MIT"
5+
authors = ["EasternGamer"]
6+
edition = "2024"
7+
description = "An unsafe, near-zero cost (1-2 instructions) byte transmuter to numeric types with fast byte reader"
8+
keywords = ["unsafe", "byte", "convert", "numeric"]
9+
repository = "https://github.com/EasternGamer/hyper_byte"
10+
readme = "README.md"
11+
exclude = [
12+
".idea/*"
13+
]
14+
15+
[profile.release]
16+
opt-level = 3
17+
overflow-checks = false
18+
lto = true
19+
codegen-units = 1
20+
debug = true
21+
22+
[dependencies]
23+
half = { version = "2.6.0", optional = true }
24+
25+
[features]
26+
half = ["dep:half"]
27+
28+
[dev-dependencies]
2929
half = "2.6.0"

0 commit comments

Comments
 (0)