build: bump dependencies
This commit is contained in:
808
Cargo.lock
generated
808
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -21,7 +21,8 @@ compio = { version = "0.16.0", features = ["runtime"] }
|
||||
redb = "3.1.0"
|
||||
crabtime = { git = "https://github.com/wdanilo/crabtime.git", rev = "2ed856f5" }
|
||||
|
||||
parquet = "56.2.0"
|
||||
parquet = "57.1"
|
||||
parquet_derive = "57.1"
|
||||
|
||||
[profile.release]
|
||||
lto = "thin"
|
||||
|
||||
@@ -48,4 +48,4 @@ cipher = { version = "0.4.4", features = ["block-padding"] }
|
||||
bincode = { version = "2.0.1", optional = true }
|
||||
|
||||
parquet = { workspace = true, optional = true }
|
||||
parquet_derive = { version = "56.2.0", optional = true }
|
||||
parquet_derive = { workspace = true, optional = true }
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
import orjson as json
|
||||
|
||||
|
||||
def main():
|
||||
with open("players.json", "r", encoding="utf-8") as f:
|
||||
d: list[dict[str, int | str]] = json.loads(f.read())
|
||||
print(d[-1]["userId"])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -5,7 +5,7 @@ import polars_hash as pl_hash
|
||||
file = argv[1]
|
||||
|
||||
user_ids = (
|
||||
pl.DataFrame({"user_id_num": range(11000000, 13000001)})
|
||||
pl.DataFrame({"user_id_num": range(11000000, 14000001)})
|
||||
.with_columns(
|
||||
pl.col("user_id_num")
|
||||
.cast(pl.String)
|
||||
|
||||
Reference in New Issue
Block a user