-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrading to the latest versions
- Loading branch information
1 parent
3b6faf4
commit 7ddb59d
Showing
9 changed files
with
122 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pschema-rs" | ||
version = "0.0.3" | ||
authors = [ "Ángel Iglesias Préstamo <[email protected]>" ] | ||
version = "0.0.4" | ||
authors = ["Ángel Iglesias Préstamo <[email protected]>"] | ||
description = "Pregel-based schema validation algorithm written in Rust for generating Wikidata subsets" | ||
documentation = "https://docs.rs/crate/pschema-rs/latest" | ||
repository = "https://github.com/angelip2303/pschema-rs" | ||
|
@@ -12,14 +12,24 @@ keywords = ["pregel", "wikidata", "subsetting", "duckdb", "validation"] | |
categories = ["algorithms", "database", "mathematics", "science"] | ||
|
||
[dependencies] | ||
pregel-rs = { version = "0.0.13" } | ||
wikidata-rs = { version = "0.0.4" } | ||
polars = { version = "0.30.0", features = ["lazy", "is_in", "performant", "parquet", "chunked_ids", "list_eval", "dtype-categorical", "rows", "is_first"] } | ||
duckdb = { version = "0.7.1" } | ||
pregel-rs = { path = "../pregel-rs" } | ||
wikidata-rs = { path = "../wd2duckdb/wikidata-rs" } | ||
polars = { version = "0.45.1", features = [ | ||
"lazy", | ||
"is_in", | ||
"performant", | ||
"parquet", | ||
"chunked_ids", | ||
"list_eval", | ||
"dtype-categorical", | ||
"rows", | ||
"is_first_distinct", | ||
] } | ||
duckdb = { version = "1.1.1" } | ||
rayon = "1.7.0" | ||
wikidata = "0.3.0" | ||
strum = "0.24.1" | ||
strum_macros = "0.24" | ||
wikidata = "1.1.0" | ||
strum = "0.26.3" | ||
strum_macros = "0.26.4" | ||
bimap = "0.6.3" | ||
rio_turtle = "0.8.4" | ||
rio_api = "0.8.4" | ||
|
@@ -28,12 +38,12 @@ rio_api = "0.8.4" | |
jemallocator = "0.5.0" | ||
|
||
[target.'cfg(target_env = "msvc")'.dependencies] | ||
mimalloc = { version = "0.1.37", default-features = false } | ||
mimalloc = { version = "0.1.43", default-features = false } | ||
|
||
[dev-dependencies] | ||
duckdb = { version="0.7.1", features=["bundled"] } | ||
duckdb = { version = "1.1.1", features = ["bundled"] } | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
opt-level = 3 | ||
lto = "thin" | ||
lto = "thin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.