# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "paging-calculator" version = "0.4.0" build = false exclude = [".github"] autobins = false autoexamples = false autotests = false autobenches = false description = """ CLI utility that helps you to calculate indices into the page table from a virtual address. The tool knows multiple paging implementations, such as x86, x86 with PAE, x86_64 and x86_64 with a 5-level page table. """ homepage = "https://github.com/phip1611/paging-calculator" documentation = "https://docs.rs/paging-calculator" readme = "README.md" keywords = [ "paging", "page-table", ] categories = ["command-line-utilities"] license = "MIT" repository = "https://github.com/phip1611/paging-calculator" [profile.release] opt-level = "z" lto = true codegen-units = 1 strip = true [[bin]] name = "paging-calculator" path = "src/main.rs" [dependencies.atty] version = "0.2" [dependencies.clap] version = "4.5" features = [ "std", "color", "help", "usage", "error-context", "suggestions", "derive", "unicode", "wrap_help", ] [dependencies.derive_more] version = "1.0" features = ["display"] default-features = false [dependencies.nu-ansi-term] version = "0.50"