Skip to content

Commit cfe16e2

Browse files
committed
bump: version 0.0.1-alpha.1 to 0.0.1-alpha.1
1 parent 84792d6 commit cfe16e2

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

binding/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bintensors-python"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
rust-version = '1.75'
66

binding/python/pyproject.toml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,19 @@ authors = [
2727
{name = 'Luca Vivona', email = "lucavivona01@gmail.com"}
2828
]
2929
readme = {file = "README.md", content-type = "text/markdown"}
30-
30+
description = """
31+
bintensors is a high-performance binary tensor serialization
32+
format designed to be faster than safetensors by eliminating
33+
JSON metadata overhead. Instead of using JSON for metadata storage,
34+
bintensors employs a compact binary header, reducing parsing time and improving I/O efficiency.
35+
The format begins with an 8-byte unsigned integer (u64), indicating the size of the binary header.
36+
This header contains essential tensor metadata, including the data type (dtype),
37+
the shape of the tensor stored as a length-prefixed list,
38+
and data offsets specifying where each tensor's raw values are stored within the file.
39+
An index map is also included for named tensor lookups. With its efficient structure,
40+
bintensors provides a fast and lightweight alternative for serializing and deserializing large models,
41+
making it ideal for machine learning, scientific computing, and other high-performance applications.
42+
"""
3143
[project.optional-dependencies]
3244
numpy = ["numpy>=1.21.6"]
3345
torch = [

bintensors/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bintensors"
3-
version = "0.0.1-alpha.1"
3+
version = "0.0.1-alpha.2"
44
edition = "2024"
55
license = "MIT"
66
rust-version = "1.85"

0 commit comments

Comments
 (0)