add sample, minimum viable product, add README.md

This commit is contained in:
mtgmonkey 2025-06-21 09:27:51 -04:00
parent fd07ea0b2d
commit 34fd92cccc
8 changed files with 238 additions and 18 deletions

22
Cargo.lock generated
View file

@ -99,6 +99,27 @@ version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
[[package]]
name = "csv"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
dependencies = [
"csv-core",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
dependencies = [
"memchr",
]
[[package]]
name = "displaydoc"
version = "0.2.5"
@ -829,6 +850,7 @@ dependencies = [
name = "rust_elaborator"
version = "0.1.0"
dependencies = [
"csv",
"fuzzy-matcher",
"reqwest",
"serde",