Add name table support

This commit is contained in:
2025-05-21 12:48:09 +08:00
parent 99210a19cf
commit a073b72f6f
7 changed files with 80 additions and 1 deletions

22
Cargo.lock generated
View File

@@ -110,6 +110,27 @@ version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
[[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 = "encoding_rs"
version = "0.8.35"
@@ -155,6 +176,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"clap",
"csv",
"encoding_rs",
"lazy_static",
"serde",