[READ-ONLY] Mirror of https://github.com/probablykasper/cpc. Text calculator with support for units and conversion cpc.kasper.space
calculator cli conversion converter library math package units units-converter wasm website
0

Configure Feed

Select the types of activity you want to include in your feed.

cargo init

Kasper (Dec 6, 2019, 4:16 PM +0100) 4281aa97 6c15cf9c

+93
+2
.gitignore
··· 1 + /target 2 + **/*.rs.bk
+79
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + [[package]] 4 + name = "cpc" 5 + version = "0.1.0" 6 + dependencies = [ 7 + "logos 0.9.7 (registry+https://github.com/rust-lang/crates.io-index)", 8 + ] 9 + 10 + [[package]] 11 + name = "logos" 12 + version = "0.9.7" 13 + source = "registry+https://github.com/rust-lang/crates.io-index" 14 + dependencies = [ 15 + "logos-derive 0.9.7 (registry+https://github.com/rust-lang/crates.io-index)", 16 + ] 17 + 18 + [[package]] 19 + name = "logos-derive" 20 + version = "0.9.7" 21 + source = "registry+https://github.com/rust-lang/crates.io-index" 22 + dependencies = [ 23 + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 24 + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 25 + "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", 26 + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", 27 + "utf8-ranges 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 28 + ] 29 + 30 + [[package]] 31 + name = "proc-macro2" 32 + version = "0.4.30" 33 + source = "registry+https://github.com/rust-lang/crates.io-index" 34 + dependencies = [ 35 + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 36 + ] 37 + 38 + [[package]] 39 + name = "quote" 40 + version = "0.6.13" 41 + source = "registry+https://github.com/rust-lang/crates.io-index" 42 + dependencies = [ 43 + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 44 + ] 45 + 46 + [[package]] 47 + name = "regex-syntax" 48 + version = "0.6.12" 49 + source = "registry+https://github.com/rust-lang/crates.io-index" 50 + 51 + [[package]] 52 + name = "syn" 53 + version = "0.15.44" 54 + source = "registry+https://github.com/rust-lang/crates.io-index" 55 + dependencies = [ 56 + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 57 + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 58 + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 59 + ] 60 + 61 + [[package]] 62 + name = "unicode-xid" 63 + version = "0.1.0" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + 66 + [[package]] 67 + name = "utf8-ranges" 68 + version = "1.0.4" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + 71 + [metadata] 72 + "checksum logos 0.9.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f494e22d293fa05db60b3fd95fb30e9409feb5672b56ce6f250f99d9fbae6b93" 73 + "checksum logos-derive 0.9.7 (registry+https://github.com/rust-lang/crates.io-index)" = "13ff1b1068db09ee21d12baf55eccc0900a781a735273e0a606f6f4fbb32a322" 74 + "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 75 + "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" 76 + "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" 77 + "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" 78 + "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 79 + "checksum utf8-ranges 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba"
+8
Cargo.toml
··· 1 + [package] 2 + name = "cpc" 3 + version = "0.1.0" 4 + authors = ["Kasper <kasperkh.kh@gmail.com>"] 5 + edition = "2018" 6 + 7 + [dependencies] 8 + logos = "0.9.7"
+1
README.md
··· 1 + wip
+3
src/main.rs
··· 1 + fn main() { 2 + println!("Hello, world!"); 3 + }