2 Commits

Author SHA1 Message Date
Bill
26d1eb631e version update to publish to Pypi 2
Some checks failed
Publish to PyPI / Build wheels on macos-latest (push) Has been cancelled
Publish to PyPI / Build wheels on ubuntu-latest (push) Has been cancelled
Publish to PyPI / Build wheels on windows-latest (push) Has been cancelled
Publish to PyPI / Publish to PyPI (push) Has been cancelled
2025-11-23 12:53:54 -07:00
Bill
d6bd2eee00 version update to publish to Pypi
Some checks failed
Publish to PyPI / Build wheels on macos-latest (push) Has been cancelled
Publish to PyPI / Build wheels on ubuntu-latest (push) Has been cancelled
Publish to PyPI / Build wheels on windows-latest (push) Has been cancelled
Publish to PyPI / Publish to PyPI (push) Has been cancelled
2025-11-23 12:45:31 -07:00
2 changed files with 3 additions and 4 deletions

3
Cargo.lock generated
View File

@@ -1815,7 +1815,7 @@ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
[[package]]
name = "unchecked-io"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"anyhow",
"arrow",
@@ -1823,7 +1823,6 @@ dependencies = [
"byteorder",
"bytes",
"chrono",
"chrono-tz",
"deadpool-postgres",
"futures-util",
"mimalloc",

View File

@@ -1,6 +1,6 @@
[package]
name = "unchecked-io"
version = "0.1.0"
version = "0.1.1"
authors = ["Billthemaker"] # Replace with your name or alias
license = "BSL-1" # Good practice for open-source
edition = "2024"
@@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
# 1. Python Bindings for FFI
pyo3 = { version = "0.27.1", features = ["extension-module"] }
chrono-tz = "0.10"
# 2. Configuration Parsing (YAML)
serde = { version = "1.0", features = ["derive"] }