2023-06-08 12:58:20 +00:00
|
|
|
[package]
|
|
|
|
name = "imf-codec"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-06-08 20:02:13 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2023-06-08 12:58:20 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-06-08 19:55:07 +00:00
|
|
|
[lib]
|
|
|
|
name = "imf_codec"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "imf_parse"
|
|
|
|
path = "src/parse.rs"
|
|
|
|
|
2023-06-08 12:58:20 +00:00
|
|
|
[dependencies]
|
|
|
|
nom = "7"
|
2023-06-12 09:54:15 +00:00
|
|
|
chrono = "0.4"
|