cleanup; version bumps; add cargo.lock

main
Ziyang Hu 2 years ago
parent 36398f8af2
commit 4556a067b0

2
.gitignore vendored

@ -1,5 +1,4 @@
/target
Cargo.lock
### Rust template
# Generated by Cargo
# will have compiled files and executables
@ -8,7 +7,6 @@ target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

3019
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -10,7 +10,6 @@ license = "AGPL-3.0-or-later"
[dependencies]
casey = "0.3.3"
tempfile = "3.3.0"
either = "1.7.0"
rand = "0.8.5"
miette = { version = "5.3.0", features = ["fancy"] }
@ -43,7 +42,6 @@ approx = "0.5.1"
unicode-normalization = "0.1.21"
thiserror = "1.0.34"
uuid = { version = "1.1.2", features = ["v1", "v4", "serde"] }
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres", "mysql", "mssql", "sqlite"] }
csv = "1.1.6"
cozorocks = { path = "cozorocks" }

@ -223,8 +223,6 @@ impl AlgoHandle {
"ReorderSort" => Box::new(ReorderSort),
"JsonReader" => Box::new(JsonReader),
"CsvReader" => Box::new(CsvReader),
"RemoteCozo" => todo!(),
"SqlDb" => todo!(),
name => bail!(AlgoNotFoundError(name.to_string(), self.name.span)),
})
}

Loading…
Cancel
Save