Skip to content

Commit

Permalink
Merge pull request #6 from abstractqqq/urls
Browse files Browse the repository at this point in the history
added basic url
  • Loading branch information
abstractqqq authored Mar 4, 2024
2 parents 0f21e51 + 491e53d commit 06a3f6d
Show file tree
Hide file tree
Showing 14 changed files with 557 additions and 99 deletions.
133 changes: 97 additions & 36 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ crate-type = ["cdylib"]
[dependencies]
pyo3 = {version = "*", features = ["extension-module", "abi3-py38"]}
pyo3-polars = {version = "0.12", features = ["derive"]}
polars = {version = "0.38", features = ["performant", "lazy", "nightly", "parquet"]}
polars = {version = "0.38.1", features = ["performant", "lazy", "nightly", "parquet"]}
iban_validate = "4.0.1"
isin = "0.1.18"
url = "2.5.0"

[target.'cfg(any(not(target_os = "linux"), use_mimalloc))'.dependencies]
mimalloc = { version = "0.1", default-features = false }
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

# The Project

Processing IBAN, URLs, etc., and other standard format data in Polars.
Processing IBAN, ISINs, URLs, etc., and other standard format data in Polars.

# Acknowledgements

1. Iban is powered by [iban_validate](https://crates.io/crates/iban_validate)
2. Isin is powered by [isin_rs](https://docs.rs/isin/latest/isin/)
3. URL is powered by [url](https://crates.io/crates/url)
Loading

0 comments on commit 06a3f6d

Please sign in to comment.