mirror of
https://github.com/autc04/Retro68.git
synced 2026-03-14 09:16:38 +00:00
22 lines
313 B
TOML
22 lines
313 B
TOML
[package]
|
|
name = "libformat_parser"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
"generic_format_parser",
|
|
]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
generic_format_parser = { path = "generic_format_parser" }
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[[bin]]
|
|
name = "format_parser_test"
|
|
path = "src/bin.rs"
|