Skip to content

Commit

Permalink
chore: release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AshGw committed Jun 10, 2024
1 parent d760354 commit ddf7e67
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "gcm_rs"
version = "1.0.0-beta"
version = "1.0.1"
authors = ["[email protected]"]
edition = "2021"
description = "AES-256 GCM"
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
### Installation
Python
```
pip install gcm_rs
```
Rust
```
cargo add gcm_rs
```

#### Usage
Check the unit tests in each package.
#### License
GPL-3.
### TODO
Add docs.
Add benchmarks.
Binary file added __pycache__/a.cpython-311.pyc
Binary file not shown.
Binary file added __pycache__/a.cpython-38.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion packages/pylib/__init__.py

This file was deleted.

1 change: 1 addition & 0 deletions packages/python/gcm_rs/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from packages.python.gcm_rs import *
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,19 @@ name = "gcm_rs"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]

[tool.maturin]
python-source = "."
module-name = "packages/pylib._lib_name"
python-source = "packages/python/gcm_rs"
module-name = "._lib_name"
features = ["pyo3/extension-module"]

0 comments on commit ddf7e67

Please sign in to comment.