[package] name = "smn_archive" version = "0.2.5" authors = ["Julien Liakos "] edition = "2021" description = "An archive editor for a custom smnarchive format (.smn)" license-file = "LICENSE.md" repository = "https://github.com/SummonTheCat/smn_archive" homepage = "https://summonthecat.com" documentation = "https://summonthecat.com/docs/smn_archive" [dependencies] rand = "0.8" log = "0.4" env_logger = "0.9" libc = "0.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" [features] c_api = [] [lib] name = "smn_archive" crate-type = ["cdylib", "rlib"] # Binary target for `cargo run` [[bin]] name = "smn_archive_bin" path = "src/main.rs" [profile.dev] panic = "abort" [profile.release] panic = "abort"