rpn_rs/Cargo.lock

397 lines
9.8 KiB
Plaintext
Raw Permalink Normal View History

2021-04-24 13:35:39 -04:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-10-02 08:44:45 -04:00
version = 3
2021-04-24 13:35:39 -04:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "cassowary"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
2021-05-03 20:03:56 -04:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "confy"
version = "0.4.0"
2021-06-02 22:16:03 -04:00
source = "git+https://github.com/rust-cli/confy/#6ae700bb0e6e2f9f7138d0c1871f604013c8f59f"
2021-05-03 20:03:56 -04:00
dependencies = [
2021-06-02 22:16:03 -04:00
"directories-next",
2021-05-03 20:03:56 -04:00
"serde",
2021-06-02 22:16:03 -04:00
"serde_yaml",
2021-05-03 20:03:56 -04:00
]
2021-05-14 17:55:22 -04:00
[[package]]
name = "crossterm"
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e86d73f2a0b407b5768d10a8c720cf5d2df49a9efc10ca09176d201ead4b7fb"
dependencies = [
"bitflags",
"crossterm_winapi",
"lazy_static",
"libc",
"mio",
"parking_lot",
"signal-hook",
"winapi",
]
[[package]]
name = "crossterm_winapi"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2265c3f8e080075d9b6417aa72293fc71662f34b4af2612d8d1b074d29510db"
dependencies = [
"winapi",
]
2021-05-03 20:03:56 -04:00
[[package]]
2021-06-02 22:16:03 -04:00
name = "directories-next"
version = "2.0.0"
2021-05-03 20:03:56 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-02 22:16:03 -04:00
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
2021-05-03 20:03:56 -04:00
dependencies = [
2021-06-02 22:16:03 -04:00
"cfg-if",
"dirs-sys-next",
2021-05-03 20:03:56 -04:00
]
[[package]]
2021-06-02 22:16:03 -04:00
name = "dirs-sys-next"
version = "0.1.2"
2021-05-03 20:03:56 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-02 22:16:03 -04:00
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2021-05-03 20:03:56 -04:00
dependencies = [
"libc",
"redox_users",
"winapi",
]
2021-06-02 22:16:03 -04:00
[[package]]
name = "dtoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
2021-05-03 20:03:56 -04:00
[[package]]
name = "getrandom"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
dependencies = [
2021-06-02 22:16:03 -04:00
"cfg-if",
2021-05-03 20:03:56 -04:00
"libc",
"wasi",
]
2021-05-14 17:55:22 -04:00
[[package]]
name = "instant"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
dependencies = [
2021-06-02 22:16:03 -04:00
"cfg-if",
2021-05-14 17:55:22 -04:00
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2021-04-24 13:35:39 -04:00
[[package]]
name = "libc"
2021-05-12 22:26:55 -04:00
version = "0.2.94"
2021-04-24 13:35:39 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-12 22:26:55 -04:00
checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e"
2021-04-24 13:35:39 -04:00
2021-06-02 22:16:03 -04:00
[[package]]
name = "linked-hash-map"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2021-04-24 13:35:39 -04:00
[[package]]
2021-05-14 17:55:22 -04:00
name = "lock_api"
version = "0.4.4"
2021-04-24 13:35:39 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-14 17:55:22 -04:00
checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
dependencies = [
2021-06-02 22:16:03 -04:00
"cfg-if",
2021-05-14 17:55:22 -04:00
]
[[package]]
name = "mio"
version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf80d3e903b34e0bd7282b218398aec54e082c840d9baf8339e0080a0c542956"
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"winapi",
]
[[package]]
name = "miow"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
"winapi",
]
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
[[package]]
name = "parking_lot"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
dependencies = [
"instant",
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
dependencies = [
2021-06-02 22:16:03 -04:00
"cfg-if",
2021-05-14 17:55:22 -04:00
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi",
]
2021-04-24 13:35:39 -04:00
2021-05-03 20:03:56 -04:00
[[package]]
name = "proc-macro2"
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
dependencies = [
"proc-macro2",
]
2021-04-24 13:35:39 -04:00
[[package]]
name = "redox_syscall"
2021-05-12 22:26:55 -04:00
version = "0.2.8"
2021-04-24 13:35:39 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-12 22:26:55 -04:00
checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"
2021-04-24 13:35:39 -04:00
dependencies = [
"bitflags",
]
2021-05-03 20:03:56 -04:00
[[package]]
name = "redox_users"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
dependencies = [
"getrandom",
"redox_syscall",
]
2021-04-24 13:35:39 -04:00
[[package]]
name = "rpn_rs"
2021-10-02 08:20:23 -04:00
version = "0.6.0"
2021-04-24 13:35:39 -04:00
dependencies = [
2021-05-03 20:03:56 -04:00
"confy",
2021-05-14 17:55:22 -04:00
"crossterm",
2021-10-02 08:44:45 -04:00
"lazy_static",
2021-05-03 20:03:56 -04:00
"serde",
2021-06-02 22:16:03 -04:00
"toml",
2021-04-24 13:35:39 -04:00
"tui",
]
2021-05-14 17:55:22 -04:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2021-05-03 20:03:56 -04:00
[[package]]
name = "serde"
2021-05-12 22:26:55 -04:00
version = "1.0.126"
2021-05-03 20:03:56 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-12 22:26:55 -04:00
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
2021-05-03 20:03:56 -04:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2021-05-12 22:26:55 -04:00
version = "1.0.126"
2021-05-03 20:03:56 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-12 22:26:55 -04:00
checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
2021-05-03 20:03:56 -04:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-06-02 22:16:03 -04:00
[[package]]
name = "serde_yaml"
version = "0.8.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15654ed4ab61726bf918a39cb8d98a2e2995b002387807fa6ba58fdf7f59bb23"
dependencies = [
"dtoa",
"linked-hash-map",
"serde",
"yaml-rust",
]
2021-05-03 20:03:56 -04:00
[[package]]
2021-05-14 17:55:22 -04:00
name = "signal-hook"
version = "0.1.17"
2021-05-03 20:03:56 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-14 17:55:22 -04:00
checksum = "7e31d442c16f047a671b5a71e2161d6e68814012b7f5379d269ebd915fac2729"
2021-05-03 20:03:56 -04:00
dependencies = [
2021-05-14 17:55:22 -04:00
"libc",
"mio",
"signal-hook-registry",
2021-05-03 20:03:56 -04:00
]
2021-04-24 13:35:39 -04:00
[[package]]
2021-05-14 17:55:22 -04:00
name = "signal-hook-registry"
version = "1.3.0"
2021-04-24 13:35:39 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-14 17:55:22 -04:00
checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
2021-04-24 13:35:39 -04:00
dependencies = [
"libc",
2021-05-14 17:55:22 -04:00
]
[[package]]
name = "smallvec"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
[[package]]
name = "syn"
version = "1.0.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
2021-04-24 13:35:39 -04:00
]
2021-05-03 20:03:56 -04:00
[[package]]
name = "toml"
2021-06-02 22:16:03 -04:00
version = "0.4.10"
2021-05-03 20:03:56 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-02 22:16:03 -04:00
checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
2021-05-03 20:03:56 -04:00
dependencies = [
"serde",
]
2021-04-24 13:35:39 -04:00
[[package]]
name = "tui"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ced152a8e9295a5b168adc254074525c17ac4a83c90b2716274cc38118bddc9"
dependencies = [
"bitflags",
"cassowary",
2021-05-14 17:55:22 -04:00
"crossterm",
2021-04-24 13:35:39 -04:00
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "unicode-segmentation"
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
[[package]]
name = "unicode-width"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2021-05-03 20:03:56 -04:00
[[package]]
name = "unicode-xid"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2021-06-02 22:16:03 -04:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]