Add async runtime for the orbital parameter picker
[?]
Jun 15, 2021, 11:27 AM
4LTVYHHIRCCHO66JJTR2GN775ULVQRZIITXKZUHY35B2OCYHEJZACDependencies
- [2]
K3V2JNKCInitialize sub-project for choosing lunar orbital parameters
Change contents
- replacement in orbitpick/src/main.rs at line 1
fn main() {use tokio;#[tokio::main]async fn main() { - edit in orbitpick/Cargo.toml at line 10[2.959]
tokio = { version = "1", features = ["full"] } - edit in orbitpick/Cargo.lock at line 3
[[package]]name = "autocfg"version = "1.0.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"[[package]]name = "bitflags"version = "1.2.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"[[package]]name = "bytes"version = "1.0.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"[[package]]name = "cfg-if"version = "1.0.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"[[package]]name = "hermit-abi"version = "0.1.18"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"dependencies = ["libc",][[package]]name = "instant"version = "0.1.9"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"dependencies = ["cfg-if",][[package]]name = "libc"version = "0.2.97"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6"[[package]]name = "lock_api"version = "0.4.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"dependencies = ["scopeguard",][[package]]name = "log"version = "0.4.14"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"dependencies = ["cfg-if",][[package]]name = "memchr"version = "2.4.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"[[package]]name = "mio"version = "0.7.13"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"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 = "num_cpus"version = "1.13.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"dependencies = ["hermit-abi","libc",][[package]]name = "once_cell"version = "1.8.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" - edit in orbitpick/Cargo.lock at line 125[2.1114]
dependencies = ["tokio",][[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 = ["cfg-if","instant","libc","redox_syscall","smallvec","winapi",][[package]]name = "pin-project-lite"version = "0.2.6"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"[[package]]name = "proc-macro2"version = "1.0.27"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"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",][[package]]name = "redox_syscall"version = "0.2.8"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"dependencies = ["bitflags",][[package]]name = "scopeguard"version = "1.1.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"[[package]]name = "signal-hook-registry"version = "1.4.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"dependencies = ["libc",][[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.73"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"dependencies = ["proc-macro2","quote","unicode-xid",][[package]]name = "tokio"version = "1.6.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "aea337f72e96efe29acc234d803a5981cd9a2b6ed21655cd7fc21cfe021e8ec7"dependencies = ["autocfg","bytes","libc","memchr","mio","num_cpus","once_cell","parking_lot","pin-project-lite","signal-hook-registry","tokio-macros","winapi",][[package]]name = "tokio-macros"version = "1.2.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "c49e3df43841dafb86046472506755d8501c5615673955f6aa17181125d13c37"dependencies = ["proc-macro2","quote","syn",][[package]]name = "unicode-xid"version = "0.2.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"[[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"