ietf

CLI for reading IETF RFCs.
git clone https://gitlab.com/kwatafana/p2p/ietf.git
Log | Files | Refs | README | LICENSE

Cargo.toml (826B)


      1 [package]
      2 name = "ietf"
      3 version = "0.2.1"
      4 authors = ["cy6erlion <dev@merely.tech>"]
      5 edition = "2018"
      6 description = "A program to read IETF RFCs in the terminal."
      7 homepage = "https://github.com/cy6erlion/ietf"
      8 documentation = "https://github.com/cy6erlion/ietf/blob/master/README.md#guide"
      9 repository = "https://github.com/cy6erlion/ietf"
     10 readme = "README.md"
     11 keywords = ["cli", "RFC", "IETF", "Pager"]
     12 categories = ["command-line-utilities"]
     13 
     14 license = "MIT"
     15 
     16 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
     17 
     18 [dependencies]
     19 # For parsing command line arguments
     20 clap = "2.33.3"
     21 
     22 # Minimal HTTP clientn
     23 minreq = {version = "2.3.0", features = ["https"]}
     24 
     25 # Directories
     26 dirs-next = "2.0.0"
     27 
     28 # Terminal User Interface
     29 cursive = "0.16"
     30 
     31 # Pager for reading the RFCs
     32 pager = "0.16.0"