Files
gcc-reflection/libgrust/libformat_parser/Cargo.toml
Kushal Pal d9167a76f4 gccrs: Fix nightly rustc warnings
libgrust/ChangeLog:

	* libformat_parser/Cargo.toml:
	Used crate-type instead of depricated crate_type.
	* libformat_parser/generic_format_parser/src/lib.rs:
	Remove dead code.
	* libformat_parser/src/lib.rs: Likewise.

Signed-off-by: Kushal Pal <kushalpal109@gmail.com>
2025-03-17 16:35:52 +01:00

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"