[package] name = "library_of_babel" description = "Implementation of Library of Babel in Rust" version = "0.4.0" authors = ["Arisa Snowbell"] keywords = ["Babel", "Library", "Algorithm", "Book"] categories = ["algorithms"] repository = "https://gitlab.com/Arisa_Snowbell/library-of-babel" readme = "README.md" license = "GPL-3.0" edition = "2021" exclude = ["/tests", "/.gitlab-ci.yml"] [dependencies] num = "0.4" rand = "0.8" lazy_static = "1.4" thiserror = "1.0" [profile.release.build-override] opt-level = 3 codegen-units = 1 [profile.release.package."*"] opt-level = 3 debug = false debug-assertions = false codegen-units = 1 incremental = false overflow-checks = false [profile.release] opt-level = 3 debug = false rpath = false lto = true debug-assertions = false codegen-units = 1 panic = 'abort' incremental = false overflow-checks = false [profile.dev] opt-level = 0 debug = true debug-assertions = true overflow-checks = true lto = false panic = 'unwind' incremental = true codegen-units = 256 rpath = false