mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
libgrust/ChangeLog: * libformat_parser/Cargo.toml: Change Rust edition from 2021 to 2018. * libformat_parser/generic_format_parser/Cargo.toml: Likewise. * libformat_parser/generic_format_parser/src/lib.rs: Remove usage of then-unstable std features and language constructs. * libformat_parser/src/lib.rs: Likewise, plus provide extension trait for String::leak.
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"
|