Add sql node
This commit is contained in:
21
Cargo.toml
21
Cargo.toml
@@ -7,25 +7,26 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
# https://nalgebra.org/docs/user_guide/getting_started
|
||||
nalgebra = "0.31.0"
|
||||
nalgebra = "0.33"
|
||||
|
||||
# https://docs.rs/csv/1.1.6/csv/
|
||||
csv = "1.1"
|
||||
csv = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
||||
# num = "0.4"
|
||||
clap = { version = "4.1.8", features = ["derive"] }
|
||||
anyhow = "1.0"
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
anyhow = "1"
|
||||
|
||||
itertools = "0.10.3"
|
||||
chrono = {version = "0.4.31", features = ["default", "serde"]}
|
||||
itertools = "0.10"
|
||||
chrono = {version = "0.4", features = ["default", "serde"]}
|
||||
|
||||
rayon = "1.6.0"
|
||||
tokio = { version = "1.26.0", features = ["full"] }
|
||||
tokio = { version = "1.39", features = ["full"] }
|
||||
sqlx = { version = "0.8", features = [ "runtime-tokio-rustls", "any" ] }
|
||||
rmp-serde = "1.1.1"
|
||||
tempfile = "3.7.0"
|
||||
polars = {version = "0.32.1", features = ["lazy", "performant", "streaming", "cse", "dtype-datetime"]}
|
||||
rmp-serde = "1.1"
|
||||
tempfile = "3.7"
|
||||
polars = {version = "0.41", features = ["lazy", "performant", "streaming", "cse", "dtype-datetime"]}
|
||||
polars-sql = "0.41"
|
||||
|
||||
# More info on targets: https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target
|
||||
[lib]
|
||||
|
||||
Reference in New Issue
Block a user