Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate dependencies #929

Merged
merged 5 commits into from
Aug 3, 2020
Merged

Conversation

jyn514
Copy link
Member

@jyn514 jyn514 commented Aug 2, 2020

Partial fix of #459. Most of the churn comes from the 3rd commit upgrading to postgres 0.17. This is best reviewed commit-by-commit.

On the bright side, this removes 59 of 90 duplicate dependencies.

jyn514 added 4 commits August 1, 2020 21:52
This removes 4 dependencies, including two duplicate copies of `syn` and
`quote`.

```
$ cargo update -p comrak
    Updating crates.io index
    Updating comrak v0.3.1 -> v0.8.0
    Removing pest v1.0.6
    Removing pest_derive v1.0.8
    Removing quote v0.3.15
    Removing syn v0.11.11
    Removing synom v0.11.3
      Adding twoway v0.2.1
      Adding unchecked-index v0.2.2
    Removing unicode-xid v0.0.4
```

- Remove `safe = true`

This was made the default in 0.4.0. The field is now called `unsafe_`.

https://github.com/kivikakk/comrak/blob/master/changelog.txt#L63
It drags in a ton of dependencies and can be trivially rewritten with
`url`.

```
$ cargo update -p params
    Removing autocfg v0.1.7
    Removing bodyparser v0.8.0
    Removing buf_redux v0.6.3
    Removing mime_guess v1.8.8
    Removing multipart v0.13.6
    Removing num v0.1.42
    Removing num-bigint v0.1.44
    Removing num-complex v0.1.43
    Removing num-iter v0.1.40
    Removing num-rational v0.1.42
    Removing params v0.8.0
    Removing persistent v0.4.0
    Removing phf_codegen v0.7.24
    Removing phf_generator v0.7.24
    Removing rand v0.6.5
    Removing rand_chacha v0.1.1
    Removing rand_hc v0.1.0
    Removing rand_isaac v0.1.1
    Removing rand_jitter v0.1.4
    Removing rand_os v0.1.3
    Removing rand_pcg v0.1.2
    Removing rand_xorshift v0.1.1
    Removing tempdir v0.3.7
    Removing twoway v0.1.8
    Removing urlencoded v0.6.0
```
```
$ cargo update -p postgres
    Updating crates.io index
    Removing base64 v0.6.0
    Removing block-buffer v0.3.3
    Removing byte-tools v0.2.0
    Removing bytes v0.4.12
      Adding cloudabi v0.1.0
    Removing crypto-mac v0.5.2
    Removing digest v0.7.6
    Updating fallible-iterator v0.1.6 -> v0.2.0
    Removing fuchsia-cprng v0.1.1
    Removing generic-array v0.9.0
    Removing hex v0.2.0
    Removing hmac v0.5.0
      Adding instant v0.1.6
    Updating libc v0.2.70 -> v0.2.74
      Adding lock_api v0.4.1
    Removing md5 v0.3.8
      Adding parking_lot v0.11.0
      Adding parking_lot_core v0.8.0
    Removing phf v0.7.24
    Removing phf_shared v0.7.24
    Updating postgres v0.15.2 -> v0.17.5
    Updating postgres-protocol v0.3.2 -> v0.5.2
    Removing postgres-shared v0.4.2
      Adding postgres-types v0.1.2
    Updating r2d2_postgres v0.14.0 -> v0.16.0
    Removing rand v0.3.23
    Removing rand v0.4.6
    Removing rand_core v0.3.1
    Removing rand_core v0.4.2
    Removing rdrand v0.4.0
    Removing safemem v0.2.0
    Updating schemamama_postgres v0.2.4 -> v0.3.0
    Removing sha2 v0.7.1
    Removing siphasher v0.2.3
      Adding tokio-postgres v0.5.5
```

- Change &Connection to &mut Connection
- Add `NoTls` type parameter to connection manager
- Use `String.as_str()` instead of `&String` to help type inference
- Temporarily `use Client as Connection`
- Use `row.try_get()` instead of `row.get_opt()`
- Use `rows[0]` instead of `rows.get(0)`
- Various other small changes
@jyn514 jyn514 added S-waiting-on-review Status: This pull request has been implemented and needs to be reviewed P-medium Medium priority C-technical-debt Category: This makes the code harder to read and modify, but has no impact on end users labels Aug 2, 2020
@jyn514
Copy link
Member Author

jyn514 commented Aug 2, 2020

Duplicates before
autocfg v0.1.7
[build-dependencies]
├── rand v0.6.5
│   └── phf_generator v0.7.24
│       └── phf_codegen v0.7.24
│           [build-dependencies]
│           └── mime_guess v1.8.8
│               └── multipart v0.13.6
│                   └── params v0.8.0
│                       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── rand_chacha v0.1.1
│   └── rand v0.6.5 (*)
└── rand_pcg v0.1.2
    └── rand v0.6.5 (*)

autocfg v1.0.0
[build-dependencies]
├── crossbeam-epoch v0.8.2
│   └── crossbeam-deque v0.7.3
│       ├── rayon v1.3.0
│       │   └── criterion v0.3.3
│       │       [dev-dependencies]
│       │       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       └── rayon-core v1.7.0
│           └── rayon v1.3.0 (*)
├── crossbeam-utils v0.7.2
│   ├── crossbeam-deque v0.7.3 (*)
│   ├── crossbeam-epoch v0.8.2 (*)
│   ├── crossbeam-queue v0.2.1
│   │   └── rayon-core v1.7.0 (*)
│   ├── ignore v0.4.16
│   │   └── globwalk v0.8.0
│   │       └── tera v1.3.1
│   │           └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── rayon-core v1.7.0 (*)
├── indexmap v1.3.2
│   └── h2 v0.2.5
│       └── hyper v0.13.6
│           ├── hyper-tls v0.4.1
│           │   ├── reqwest v0.10.6
│           │   │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│           │   │   └── rustwide v0.7.1
│           │   │       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│           │   └── rusoto_core v0.45.0
│           │       ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│           │       └── rusoto_s3 v0.45.0
│           │           └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│           ├── reqwest v0.10.6 (*)
│           ├── rusoto_core v0.45.0 (*)
│           ├── rusoto_credential v0.45.0
│           │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│           │   ├── rusoto_core v0.45.0 (*)
│           │   └── rusoto_signature v0.45.0
│           │       └── rusoto_core v0.45.0 (*)
│           └── rusoto_signature v0.45.0 (*)
├── memoffset v0.5.4
│   └── crossbeam-epoch v0.8.2 (*)
├── num-integer v0.1.42
│   ├── chrono v0.4.11
│   │   ├── chrono-tz v0.5.1
│   │   │   └── tera v1.3.1 (*)
│   │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │   ├── postgres-shared v0.4.2
│   │   │   ├── postgres v0.15.2
│   │   │   │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │   │   │   ├── r2d2_postgres v0.14.0
│   │   │   │   │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │   │   │   └── schemamama_postgres v0.2.4
│   │   │   │       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │   │   └── r2d2_postgres v0.14.0 (*)
│   │   ├── procfs v0.7.9
│   │   │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │   ├── rusoto_credential v0.45.0 (*)
│   │   ├── systemstat v0.1.5
│   │   │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │   └── tera v1.3.1 (*)
│   ├── num v0.1.42
│   │   └── params v0.8.0 (*)
│   ├── num-bigint v0.1.44
│   │   ├── num v0.1.42 (*)
│   │   └── num-rational v0.1.42
│   │       └── num v0.1.42 (*)
│   ├── num-iter v0.1.40
│   │   └── num v0.1.42 (*)
│   └── num-rational v0.1.42 (*)
├── num-iter v0.1.40 (*)
├── num-traits v0.2.11
│   ├── chrono v0.4.11 (*)
│   ├── criterion v0.3.3 (*)
│   ├── num v0.1.42 (*)
│   ├── num-bigint v0.1.44 (*)
│   ├── num-complex v0.1.43
│   │   └── num v0.1.42 (*)
│   ├── num-integer v0.1.42 (*)
│   ├── num-iter v0.1.40 (*)
│   ├── num-rational v0.1.42 (*)
│   └── plotters v0.2.14
│       └── criterion v0.3.3 (*)
└── openssl-sys v0.9.56
    ├── git2 v0.13.6
    │   ├── crates-index-diff v7.0.1
    │   │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    │   [build-dependencies]
    │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    ├── libgit2-sys v0.12.6+1.0.0
    │   └── git2 v0.13.6 (*)
    ├── native-tls v0.2.4
    │   ├── hyper-tls v0.4.1 (*)
    │   ├── reqwest v0.10.6 (*)
    │   └── tokio-tls v0.3.1
    │       ├── hyper-tls v0.4.1 (*)
    │       └── reqwest v0.10.6 (*)
    └── openssl v0.10.29
        └── native-tls v0.2.4 (*)

base64 v0.6.0
└── postgres-protocol v0.3.2
    ├── postgres v0.15.2 (*)
    └── postgres-shared v0.4.2 (*)

base64 v0.9.3
└── hyper v0.10.16
    └── iron v0.5.1
        ├── bodyparser v0.8.0
        │   ├── params v0.8.0 (*)
        │   └── urlencoded v0.6.0
        │       └── params v0.8.0 (*)
        ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
        ├── mount v0.3.0
        │   └── staticfile v0.4.0
        │       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
        ├── params v0.8.0 (*)
        ├── persistent v0.4.0
        │   └── bodyparser v0.8.0 (*)
        ├── router v0.5.1
        │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
        ├── staticfile v0.4.0 (*)
        └── urlencoded v0.6.0 (*)

base64 v0.11.0
└── rustwide v0.7.1 (*)

base64 v0.12.1
├── badge v0.3.0 (/home/joshua/src/rust/docs.rs/src/web/badge)
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
└── rusoto_signature v0.45.0 (*)

block-buffer v0.3.3
└── sha2 v0.7.1
    └── postgres-protocol v0.3.2 (*)

block-buffer v0.7.3
└── sha-1 v0.8.2
    [build-dependencies]
    └── pest_meta v2.1.3
        └── pest_generator v2.1.3
            └── pest_derive v2.1.0
                └── tera v1.3.1 (*)

block-buffer v0.9.0
└── sha2 v0.9.1
    └── rusoto_signature v0.45.0 (*)

byte-tools v0.2.0
├── block-buffer v0.3.3 (*)
└── sha2 v0.7.1 (*)

byte-tools v0.3.1
├── block-buffer v0.7.3 (*)
└── block-padding v0.1.5
    └── block-buffer v0.7.3 (*)

bytes v0.4.12
├── postgres v0.15.2 (*)
└── postgres-protocol v0.3.2 (*)

bytes v0.5.4
├── h2 v0.2.5 (*)
├── http v0.2.1
│   ├── h2 v0.2.5 (*)
│   ├── http-body v0.3.1
│   │   ├── hyper v0.13.6 (*)
│   │   └── reqwest v0.10.6 (*)
│   ├── hyper v0.13.6 (*)
│   ├── reqwest v0.10.6 (*)
│   ├── rusoto_core v0.45.0 (*)
│   └── rusoto_signature v0.45.0 (*)
├── http-body v0.3.1 (*)
├── hyper v0.13.6 (*)
├── hyper-tls v0.4.1 (*)
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rusoto_s3 v0.45.0 (*)
├── rusoto_signature v0.45.0 (*)
├── tokio v0.2.22
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   ├── h2 v0.2.5 (*)
│   ├── hyper v0.13.6 (*)
│   ├── hyper-tls v0.4.1 (*)
│   ├── reqwest v0.10.6 (*)
│   ├── rusoto_core v0.45.0 (*)
│   ├── rusoto_credential v0.45.0 (*)
│   ├── rusoto_signature v0.45.0 (*)
│   ├── rustwide v0.7.1 (*)
│   ├── tokio-tls v0.3.1 (*)
│   └── tokio-util v0.3.1
│       └── h2 v0.2.5 (*)
└── tokio-util v0.3.1 (*)

crypto-mac v0.5.2
└── hmac v0.5.0
    └── postgres-protocol v0.3.2 (*)

crypto-mac v0.8.0
└── hmac v0.8.1
    └── rusoto_signature v0.45.0 (*)

digest v0.7.6
├── hmac v0.5.0 (*)
└── sha2 v0.7.1 (*)

digest v0.8.1
└── sha-1 v0.8.2 (*)

digest v0.9.0
├── hmac v0.8.1 (*)
└── sha2 v0.9.1 (*)

filetime v0.1.15
└── staticfile v0.4.0 (*)

filetime v0.2.10
├── notify v4.0.15
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
└── tar v0.4.26
    └── rustwide v0.7.1 (*)

generic-array v0.9.0
├── crypto-mac v0.5.2 (*)
├── digest v0.7.6 (*)
└── postgres-protocol v0.3.2 (*)

generic-array v0.12.3
├── block-buffer v0.7.3 (*)
└── digest v0.8.1 (*)

generic-array v0.14.3
├── block-buffer v0.9.0 (*)
├── crypto-mac v0.8.0 (*)
└── digest v0.9.0 (*)

hex v0.2.0
└── postgres-shared v0.4.2 (*)

hex v0.4.2
├── procfs v0.7.9 (*)
└── rusoto_signature v0.45.0 (*)

hmac v0.5.0 (*)

hmac v0.8.1 (*)

hyper v0.10.16 (*)

hyper v0.13.6 (*)

idna v0.1.5
└── url v1.7.2
    ├── hyper v0.10.16 (*)
    ├── iron v0.5.1 (*)
    ├── router v0.5.1 (*)
    ├── staticfile v0.4.0 (*)
    └── urlencoded v0.6.0 (*)

idna v0.2.0
└── url v2.1.1
    ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    ├── git2 v0.13.6 (*)
    ├── reqwest v0.10.6 (*)
    └── serde_urlencoded v0.6.1
        └── reqwest v0.10.6 (*)

lazy_static v0.2.11
└── iron v0.5.1 (*)

lazy_static v1.4.0
├── bstr v0.2.13
│   ├── csv v1.1.3
│   │   └── criterion v0.3.3 (*)
│   └── globset v0.4.5
│       └── ignore v0.4.16 (*)
├── comrak v0.3.1
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── criterion v0.3.3 (*)
├── crossbeam-epoch v0.8.2 (*)
├── crossbeam-utils v0.7.2 (*)
├── ignore v0.4.16 (*)
├── openssl v0.10.29 (*)
├── procfs v0.7.9 (*)
├── prometheus v0.7.0
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── rayon-core v1.7.0 (*)
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rustwide v0.7.1 (*)
├── string_cache v0.8.0
│   └── markup5ever v0.10.0
│       └── html5ever v0.25.1
│           └── kuchiki v0.8.0
│               └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── structopt v0.3.14
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── systemstat v0.1.5 (*)
├── tera v1.3.1 (*)
├── thread_local v1.0.1
│   ├── ignore v0.4.16 (*)
│   └── regex v1.3.7
│       ├── comrak v0.3.1 (*)
│       ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       ├── criterion v0.3.3 (*)
│       ├── env_logger v0.7.1
│       │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       ├── globset v0.4.5 (*)
│       ├── ignore v0.4.16 (*)
│       ├── parse-zoneinfo v0.2.1
│       │   [build-dependencies]
│       │   └── chrono-tz v0.5.1 (*)
│       ├── rusoto_credential v0.45.0 (*)
│       └── tera v1.3.1 (*)
└── tokio v0.2.22 (*)

log v0.3.9
├── hyper v0.10.16 (*)
├── iron v0.5.1 (*)
├── mime v0.2.6
│   ├── hyper v0.10.16 (*)
│   ├── mime_guess v1.8.8 (*)
│   └── multipart v0.13.6 (*)
└── multipart v0.13.6 (*)

log v0.4.8
├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── env_logger v0.7.1 (*)
├── git2 v0.13.6 (*)
├── globset v0.4.5 (*)
├── h2 v0.2.5 (*)
├── html5ever v0.25.1 (*)
├── hyper v0.13.6 (*)
├── ignore v0.4.16 (*)
├── log v0.3.9 (*)
├── markup5ever v0.10.0 (*)
├── mio v0.6.22
│   ├── mio-extras v2.0.6
│   │   └── notify v4.0.15 (*)
│   ├── mio-uds v0.6.8
│   │   └── tokio v0.2.22 (*)
│   ├── notify v4.0.15 (*)
│   └── tokio v0.2.22 (*)
├── mio-extras v2.0.6 (*)
├── native-tls v0.2.4 (*)
├── postgres v0.15.2 (*)
├── r2d2 v0.8.8
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── r2d2_postgres v0.14.0 (*)
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rusoto_signature v0.45.0 (*)
├── rustwide v0.7.1 (*)
├── schemamama v0.3.0
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── schemamama_postgres v0.2.4 (*)
├── selectors v0.22.0
│   └── kuchiki v0.8.0 (*)
├── tokio-util v0.3.1 (*)
└── want v0.3.0
    └── hyper v0.13.6 (*)

md5 v0.3.8
└── postgres-protocol v0.3.2 (*)

md5 v0.7.0
├── rusoto_core v0.45.0 (*)
└── rusoto_signature v0.45.0 (*)

memchr v1.0.2
├── buf_redux v0.6.3
│   └── multipart v0.13.6 (*)
├── nom v3.2.1
│   └── systemstat v0.1.5 (*)
└── postgres-protocol v0.3.2 (*)

memchr v2.3.3
├── aho-corasick v0.7.10
│   ├── globset v0.4.5 (*)
│   └── regex v1.3.7 (*)
├── bstr v0.2.13 (*)
├── csv-core v0.1.10
│   └── csv v1.1.3 (*)
├── futures-util v0.3.5
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   ├── futures v0.3.5
│   │   ├── rusoto_core v0.45.0 (*)
│   │   ├── rusoto_credential v0.45.0 (*)
│   │   ├── rusoto_s3 v0.45.0 (*)
│   │   └── rusoto_signature v0.45.0 (*)
│   ├── futures-executor v0.3.5
│   │   └── futures v0.3.5 (*)
│   ├── h2 v0.2.5 (*)
│   ├── hyper v0.13.6 (*)
│   ├── reqwest v0.10.6 (*)
│   └── rustwide v0.7.1 (*)
├── ignore v0.4.16 (*)
├── regex v1.3.7 (*)
├── tokio v0.2.22 (*)
└── twoway v0.1.8
    ├── comrak v0.3.1 (*)
    └── multipart v0.13.6 (*)

mime v0.2.6 (*)

mime v0.3.16
├── mime_guess v2.0.3
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── reqwest v0.10.6 (*)
└── reqwest v0.10.6 (*)

mime_guess v1.8.8 (*)

mime_guess v2.0.3 (*)

opaque-debug v0.2.3
└── sha-1 v0.8.2 (*)

opaque-debug v0.3.0
└── sha2 v0.9.1 (*)

percent-encoding v1.0.1
└── url v1.7.2 (*)

percent-encoding v2.1.0
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rusoto_signature v0.45.0 (*)
├── rustwide v0.7.1 (*)
├── tera v1.3.1 (*)
└── url v2.1.1 (*)

pest v1.0.6
├── comrak v0.3.1 (*)
└── pest_derive v1.0.8
    └── comrak v0.3.1 (*)

pest v2.1.3
├── pest_derive v2.1.0 (*)
├── pest_generator v2.1.3 (*)
├── pest_meta v2.1.3 (*)
└── tera v1.3.1 (*)

pest_derive v1.0.8 (*)

pest_derive v2.1.0 (*)

phf v0.7.24
├── mime_guess v1.8.8 (*)
└── postgres-shared v0.4.2 (*)
[build-dependencies]
└── mime_guess v1.8.8 (*)

phf v0.8.0
├── cssparser v0.27.2
│   ├── kuchiki v0.8.0 (*)
│   └── selectors v0.22.0 (*)
├── markup5ever v0.10.0 (*)
└── selectors v0.22.0 (*)

phf_codegen v0.7.24 (*)

phf_codegen v0.8.0
[build-dependencies]
├── markup5ever v0.10.0 (*)
└── selectors v0.22.0 (*)

phf_generator v0.7.24 (*)

phf_generator v0.8.0
├── phf_codegen v0.8.0 (*)
├── phf_macros v0.8.0
│   └── phf v0.8.0 (*)
└── string_cache_codegen v0.5.1
    [build-dependencies]
    └── markup5ever v0.10.0 (*)

phf_shared v0.7.24
├── phf v0.7.24 (*)
├── phf_codegen v0.7.24 (*)
└── phf_generator v0.7.24 (*)

phf_shared v0.8.0
├── phf v0.8.0 (*)
├── phf_codegen v0.8.0 (*)
├── phf_generator v0.8.0 (*)
├── phf_macros v0.8.0 (*)
├── string_cache v0.8.0 (*)
└── string_cache_codegen v0.5.1 (*)

quote v0.3.15
├── pest_derive v1.0.8 (*)
└── syn v0.11.11
    └── pest_derive v1.0.8 (*)

quote v1.0.6
├── async-trait v0.1.36
│   ├── rusoto_core v0.45.0 (*)
│   ├── rusoto_credential v0.45.0 (*)
│   └── rusoto_s3 v0.45.0 (*)
├── cssparser-macros v0.6.0
│   └── cssparser v0.27.2 (*)
├── derive_more v0.99.7
│   └── selectors v0.22.0 (*)
├── failure_derive v0.1.8
│   └── failure v0.1.8
│       ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       └── rustwide v0.7.1 (*)
├── futures-macro v0.3.5
│   └── futures-util v0.3.5 (*)
├── pest_generator v2.1.3 (*)
├── phf_macros v0.8.0 (*)
├── pin-project-internal v0.4.17
│   └── pin-project v0.4.17
│       ├── futures-util v0.3.5 (*)
│       ├── hyper v0.13.6 (*)
│       ├── rusoto_core v0.45.0 (*)
│       ├── rusoto_credential v0.45.0 (*)
│       └── rusoto_signature v0.45.0 (*)
├── proc-macro-error v1.0.2
│   └── structopt-derive v0.4.7
│       └── structopt v0.3.14 (*)
├── proc-macro-error-attr v1.0.2
│   └── proc-macro-error v1.0.2 (*)
├── serde_derive v1.0.110
│   ├── crates-index-diff v7.0.1 (*)
│   ├── criterion v0.3.3 (*)
│   └── serde v1.0.110
│       ├── bodyparser v0.8.0 (*)
│       ├── bstr v0.2.13 (*)
│       ├── chrono v0.4.11 (*)
│       ├── crates-index-diff v7.0.1 (*)
│       ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       ├── criterion v0.3.3 (*)
│       ├── csv v1.1.3 (*)
│       ├── reqwest v0.10.6 (*)
│       ├── rusoto_core v0.45.0 (*)
│       ├── rusoto_credential v0.45.0 (*)
│       ├── rusoto_signature v0.45.0 (*)
│       ├── rustwide v0.7.1 (*)
│       ├── semver v0.9.0
│       │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       │   └── rustc_version v0.2.3
│       │       [build-dependencies]
│       │       ├── cast v0.2.3
│       │       │   ├── criterion v0.3.3 (*)
│       │       │   └── criterion-plot v0.4.3
│       │       │       └── criterion v0.3.3 (*)
│       │       ├── rusoto_core v0.45.0 (*)
│       │       └── rusoto_signature v0.45.0 (*)
│       ├── serde_cbor v0.11.1
│       │   └── criterion v0.3.3 (*)
│       ├── serde_json v1.0.53
│       │   ├── bodyparser v0.8.0 (*)
│       │   ├── crates-index-diff v7.0.1 (*)
│       │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       │   ├── criterion v0.3.3 (*)
│       │   ├── params v0.8.0 (*)
│       │   ├── postgres-shared v0.4.2 (*)
│       │   ├── reqwest v0.10.6 (*)
│       │   ├── rusoto_core v0.45.0 (*)
│       │   ├── rusoto_credential v0.45.0 (*)
│       │   ├── rustwide v0.7.1 (*)
│       │   ├── tera v1.3.1 (*)
│       │   └── tinytemplate v1.1.0
│       │       └── criterion v0.3.3 (*)
│       │   [build-dependencies]
│       │   └── markup5ever v0.10.0 (*)
│       ├── serde_urlencoded v0.6.1 (*)
│       ├── string_cache v0.8.0 (*)
│       ├── tera v1.3.1 (*)
│       ├── tinytemplate v1.1.0 (*)
│       ├── toml v0.5.6
│       │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       │   └── rustwide v0.7.1 (*)
│       └── url v2.1.1 (*)
│       [build-dependencies]
│       └── markup5ever v0.10.0 (*)
│   [build-dependencies]
│   └── markup5ever v0.10.0 (*)
├── string_cache_codegen v0.5.1 (*)
├── structopt-derive v0.4.7 (*)
├── strum_macros v0.18.0
│   └── strum v0.18.0
│       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── syn v1.0.22
│   ├── async-trait v0.1.36 (*)
│   ├── cssparser-macros v0.6.0 (*)
│   ├── derive_more v0.99.7 (*)
│   ├── failure_derive v0.1.8 (*)
│   ├── futures-macro v0.3.5 (*)
│   ├── pest_generator v2.1.3 (*)
│   ├── phf_macros v0.8.0 (*)
│   ├── pin-project-internal v0.4.17 (*)
│   ├── proc-macro-error v1.0.2 (*)
│   ├── proc-macro-error-attr v1.0.2 (*)
│   ├── serde_derive v1.0.110 (*)
│   ├── structopt-derive v0.4.7 (*)
│   ├── strum_macros v0.18.0 (*)
│   ├── syn-mid v0.5.0
│   │   └── proc-macro-error-attr v1.0.2 (*)
│   ├── synstructure v0.12.3
│   │   └── failure_derive v0.1.8 (*)
│   ├── time-macros-impl v0.1.1
│   │   └── time-macros v0.1.0
│   │       └── time v0.2.16
│   │           └── rusoto_signature v0.45.0 (*)
│   └── tokio-macros v0.2.5
│       └── tokio v0.2.22 (*)
│   [build-dependencies]
│   ├── cssparser v0.27.2 (*)
│   └── html5ever v0.25.1 (*)
├── syn-mid v0.5.0 (*)
├── synstructure v0.12.3 (*)
├── time-macros-impl v0.1.1 (*)
└── tokio-macros v0.2.5 (*)
[build-dependencies]
├── cssparser v0.27.2 (*)
└── html5ever v0.25.1 (*)

rand v0.3.23
├── multipart v0.13.6 (*)
└── postgres-protocol v0.3.2 (*)

rand v0.4.6
├── num-bigint v0.1.44 (*)
├── rand v0.3.23 (*)
└── tempdir v0.3.7
    ├── multipart v0.13.6 (*)
    └── params v0.8.0 (*)

rand v0.6.5 (*)

rand v0.7.3
├── phf_generator v0.8.0 (*)
├── tempfile v3.1.0
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── rustwide v0.7.1 (*)
└── tera v1.3.1 (*)
[dev-dependencies]
└── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)

rand_chacha v0.1.1 (*)

rand_chacha v0.2.2
└── rand v0.7.3 (*)

rand_core v0.3.1
├── rand_chacha v0.1.1 (*)
├── rand_hc v0.1.0
│   └── rand v0.6.5 (*)
├── rand_isaac v0.1.1
│   └── rand v0.6.5 (*)
└── rand_xorshift v0.1.1
    └── rand v0.6.5 (*)

rand_core v0.4.2
├── rand v0.6.5 (*)
├── rand_core v0.3.1 (*)
├── rand_jitter v0.1.4
│   └── rand v0.6.5 (*)
├── rand_os v0.1.3
│   └── rand v0.6.5 (*)
└── rand_pcg v0.1.2 (*)

rand_core v0.5.1
├── rand v0.7.3 (*)
├── rand_chacha v0.2.2 (*)
└── rand_pcg v0.2.1
    └── rand v0.7.3 (*)

rand_pcg v0.1.2 (*)

rand_pcg v0.2.1 (*)

safemem v0.2.0
├── base64 v0.6.0 (*)
├── buf_redux v0.6.3 (*)
└── multipart v0.13.6 (*)

safemem v0.3.3
└── base64 v0.9.3 (*)

sha2 v0.7.1 (*)

sha2 v0.9.1 (*)

siphasher v0.2.3
└── phf_shared v0.7.24 (*)

siphasher v0.3.3
└── phf_shared v0.8.0 (*)

syn v0.11.11 (*)

syn v1.0.22 (*)

time v0.1.43
├── chrono v0.4.11 (*)
├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── hyper v0.10.16 (*)
├── hyper v0.13.6 (*)
├── staticfile v0.4.0 (*)
└── systemstat v0.1.5 (*)
[build-dependencies]
└── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)

time v0.2.16 (*)

unicase v1.4.2
├── hyper v0.10.16 (*)
├── mime_guess v1.8.8 (*)
└── phf_shared v0.7.24 (*)
[build-dependencies]
└── mime_guess v1.8.8 (*)

unicase v2.6.0
└── mime_guess v2.0.3 (*)
[build-dependencies]
└── mime_guess v2.0.3 (*)

unicode-xid v0.0.4
├── syn v0.11.11 (*)
└── synom v0.11.3
    └── syn v0.11.11 (*)

unicode-xid v0.2.0
├── proc-macro2 v1.0.13
│   ├── async-trait v0.1.36 (*)
│   ├── derive_more v0.99.7 (*)
│   ├── failure_derive v0.1.8 (*)
│   ├── futures-macro v0.3.5 (*)
│   ├── pest_generator v2.1.3 (*)
│   ├── phf_macros v0.8.0 (*)
│   ├── pin-project-internal v0.4.17 (*)
│   ├── proc-macro-error v1.0.2 (*)
│   ├── proc-macro-error-attr v1.0.2 (*)
│   ├── quote v1.0.6 (*)
│   ├── serde_derive v1.0.110 (*)
│   ├── string_cache_codegen v0.5.1 (*)
│   ├── structopt-derive v0.4.7 (*)
│   ├── strum_macros v0.18.0 (*)
│   ├── syn v1.0.22 (*)
│   ├── syn-mid v0.5.0 (*)
│   ├── synstructure v0.12.3 (*)
│   ├── time-macros-impl v0.1.1 (*)
│   └── tokio-macros v0.2.5 (*)
│   [build-dependencies]
│   ├── cssparser v0.27.2 (*)
│   └── html5ever v0.25.1 (*)
├── syn v1.0.22 (*)
└── synstructure v0.12.3 (*)

url v1.7.2 (*)

url v2.1.1 (*)

version_check v0.1.5
[build-dependencies]
└── unicase v1.4.2 (*)

version_check v0.9.1
[build-dependencies]
├── generic-array v0.14.3 (*)
├── proc-macro-error v1.0.2 (*)
├── proc-macro-error-attr v1.0.2 (*)
├── time v0.2.16 (*)
└── unicase v2.6.0 (*)
Duplicates after
base64 v0.9.3
└── hyper v0.10.16
    └── iron v0.5.1
        ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
        ├── mount v0.3.0
        │   └── staticfile v0.4.0
        │       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
        ├── router v0.5.1
        │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
        └── staticfile v0.4.0 (*)

base64 v0.11.0
└── rustwide v0.7.1
    └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)

base64 v0.12.1
├── badge v0.3.0 (/home/joshua/src/rust/docs.rs/src/web/badge)
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── postgres-protocol v0.5.2
│   ├── postgres-types v0.1.2
│   │   └── tokio-postgres v0.5.5
│   │       └── postgres v0.17.5
│   │           ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │           ├── r2d2_postgres v0.16.0
│   │           │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   │           └── schemamama_postgres v0.3.0
│   │               └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── tokio-postgres v0.5.5 (*)
├── reqwest v0.10.6
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── rustwide v0.7.1 (*)
├── rusoto_core v0.45.0
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── rusoto_s3 v0.45.0
│       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
└── rusoto_signature v0.45.0
    └── rusoto_core v0.45.0 (*)

block-buffer v0.7.3
└── sha-1 v0.8.2
    [build-dependencies]
    └── pest_meta v2.1.3
        └── pest_generator v2.1.3
            └── pest_derive v2.1.0
                ├── comrak v0.8.0
                │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
                └── tera v1.3.1
                    └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)

block-buffer v0.9.0
└── sha2 v0.9.1
    ├── postgres-protocol v0.5.2 (*)
    └── rusoto_signature v0.45.0 (*)

digest v0.8.1
└── sha-1 v0.8.2 (*)

digest v0.9.0
├── hmac v0.8.1
│   ├── postgres-protocol v0.5.2 (*)
│   └── rusoto_signature v0.45.0 (*)
└── sha2 v0.9.1 (*)

filetime v0.1.15
└── staticfile v0.4.0 (*)

filetime v0.2.10
├── notify v4.0.15
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
└── tar v0.4.26
    └── rustwide v0.7.1 (*)

generic-array v0.12.3
├── block-buffer v0.7.3 (*)
└── digest v0.8.1 (*)

generic-array v0.14.3
├── block-buffer v0.9.0 (*)
├── crypto-mac v0.8.0
│   └── hmac v0.8.1 (*)
└── digest v0.9.0 (*)

hyper v0.10.16 (*)

hyper v0.13.6
├── hyper-tls v0.4.1
│   ├── reqwest v0.10.6 (*)
│   └── rusoto_core v0.45.0 (*)
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rusoto_credential v0.45.0
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   ├── rusoto_core v0.45.0 (*)
│   └── rusoto_signature v0.45.0 (*)
└── rusoto_signature v0.45.0 (*)

idna v0.1.5
└── url v1.7.2
    ├── hyper v0.10.16 (*)
    ├── iron v0.5.1 (*)
    ├── router v0.5.1 (*)
    └── staticfile v0.4.0 (*)

idna v0.2.0
└── url v2.1.1
    ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    ├── git2 v0.13.6
    │   ├── crates-index-diff v7.0.1
    │   │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    │   [build-dependencies]
    │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    ├── reqwest v0.10.6 (*)
    └── serde_urlencoded v0.6.1
        └── reqwest v0.10.6 (*)

lazy_static v0.2.11
└── iron v0.5.1 (*)

lazy_static v1.4.0
├── bstr v0.2.13
│   ├── csv v1.1.3
│   │   └── criterion v0.3.3
│   │       [dev-dependencies]
│   │       └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── globset v0.4.5
│       └── ignore v0.4.16
│           └── globwalk v0.8.0
│               └── tera v1.3.1 (*)
├── comrak v0.8.0 (*)
├── criterion v0.3.3 (*)
├── crossbeam-epoch v0.8.2
│   └── crossbeam-deque v0.7.3
│       ├── rayon v1.3.0
│       │   └── criterion v0.3.3 (*)
│       └── rayon-core v1.7.0
│           └── rayon v1.3.0 (*)
├── crossbeam-utils v0.7.2
│   ├── crossbeam-deque v0.7.3 (*)
│   ├── crossbeam-epoch v0.8.2 (*)
│   ├── crossbeam-queue v0.2.1
│   │   └── rayon-core v1.7.0 (*)
│   ├── ignore v0.4.16 (*)
│   └── rayon-core v1.7.0 (*)
├── ignore v0.4.16 (*)
├── openssl v0.10.29
│   └── native-tls v0.2.4
│       ├── hyper-tls v0.4.1 (*)
│       ├── reqwest v0.10.6 (*)
│       └── tokio-tls v0.3.1
│           ├── hyper-tls v0.4.1 (*)
│           └── reqwest v0.10.6 (*)
├── procfs v0.7.9
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── prometheus v0.7.0
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── rayon-core v1.7.0 (*)
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rustwide v0.7.1 (*)
├── string_cache v0.8.0
│   └── markup5ever v0.10.0
│       └── html5ever v0.25.1
│           └── kuchiki v0.8.0
│               └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── structopt v0.3.14
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── systemstat v0.1.5
│   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── tera v1.3.1 (*)
├── thread_local v1.0.1
│   ├── ignore v0.4.16 (*)
│   └── regex v1.3.7
│       ├── comrak v0.8.0 (*)
│       ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       ├── criterion v0.3.3 (*)
│       ├── env_logger v0.7.1
│       │   └── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│       ├── globset v0.4.5 (*)
│       ├── ignore v0.4.16 (*)
│       ├── parse-zoneinfo v0.2.1
│       │   [build-dependencies]
│       │   └── chrono-tz v0.5.1
│       │       └── tera v1.3.1 (*)
│       ├── rusoto_credential v0.45.0 (*)
│       └── tera v1.3.1 (*)
└── tokio v0.2.22
    ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    ├── h2 v0.2.5
    │   └── hyper v0.13.6 (*)
    ├── hyper v0.13.6 (*)
    ├── hyper-tls v0.4.1 (*)
    ├── postgres v0.17.5 (*)
    ├── reqwest v0.10.6 (*)
    ├── rusoto_core v0.45.0 (*)
    ├── rusoto_credential v0.45.0 (*)
    ├── rusoto_signature v0.45.0 (*)
    ├── rustwide v0.7.1 (*)
    ├── tokio-postgres v0.5.5 (*)
    ├── tokio-tls v0.3.1 (*)
    └── tokio-util v0.3.1
        ├── h2 v0.2.5 (*)
        └── tokio-postgres v0.5.5 (*)

lock_api v0.3.4
└── parking_lot v0.10.2
    ├── once_cell v1.4.0
    │   ├── badge v0.3.0 (/home/joshua/src/rust/docs.rs/src/web/badge) (*)
    │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    │   └── futures-task v0.3.5
    │       ├── futures v0.3.5
    │       │   ├── postgres v0.17.5 (*)
    │       │   ├── rusoto_core v0.45.0 (*)
    │       │   ├── rusoto_credential v0.45.0 (*)
    │       │   ├── rusoto_s3 v0.45.0 (*)
    │       │   ├── rusoto_signature v0.45.0 (*)
    │       │   └── tokio-postgres v0.5.5 (*)
    │       ├── futures-executor v0.3.5
    │       │   └── futures v0.3.5 (*)
    │       └── futures-util v0.3.5
    │           ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    │           ├── futures v0.3.5 (*)
    │           ├── futures-executor v0.3.5 (*)
    │           ├── h2 v0.2.5 (*)
    │           ├── hyper v0.13.6 (*)
    │           ├── reqwest v0.10.6 (*)
    │           └── rustwide v0.7.1 (*)
    ├── r2d2 v0.8.8
    │   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
    │   └── r2d2_postgres v0.16.0 (*)
    └── scheduled-thread-pool v0.2.4
        └── r2d2 v0.8.8 (*)

lock_api v0.4.1
└── parking_lot v0.11.0
    └── tokio-postgres v0.5.5 (*)

log v0.3.9
├── hyper v0.10.16 (*)
├── iron v0.5.1 (*)
└── mime v0.2.6
    └── hyper v0.10.16 (*)

log v0.4.8
├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── env_logger v0.7.1 (*)
├── git2 v0.13.6 (*)
├── globset v0.4.5 (*)
├── h2 v0.2.5 (*)
├── html5ever v0.25.1 (*)
├── hyper v0.13.6 (*)
├── ignore v0.4.16 (*)
├── log v0.3.9 (*)
├── markup5ever v0.10.0 (*)
├── mio v0.6.22
│   ├── mio-extras v2.0.6
│   │   └── notify v4.0.15 (*)
│   ├── mio-uds v0.6.8
│   │   └── tokio v0.2.22 (*)
│   ├── notify v4.0.15 (*)
│   └── tokio v0.2.22 (*)
├── mio-extras v2.0.6 (*)
├── native-tls v0.2.4 (*)
├── postgres v0.17.5 (*)
├── r2d2 v0.8.8 (*)
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rusoto_signature v0.45.0 (*)
├── rustwide v0.7.1 (*)
├── schemamama v0.3.0
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── schemamama_postgres v0.3.0 (*)
├── selectors v0.22.0
│   └── kuchiki v0.8.0 (*)
├── tokio-postgres v0.5.5 (*)
├── tokio-util v0.3.1 (*)
└── want v0.3.0
    └── hyper v0.13.6 (*)

memchr v1.0.2
└── nom v3.2.1
    └── systemstat v0.1.5 (*)

memchr v2.3.3
├── aho-corasick v0.7.10
│   ├── globset v0.4.5 (*)
│   └── regex v1.3.7 (*)
├── bstr v0.2.13 (*)
├── csv-core v0.1.10
│   └── csv v1.1.3 (*)
├── futures-util v0.3.5 (*)
├── ignore v0.4.16 (*)
├── postgres-protocol v0.5.2 (*)
├── regex v1.3.7 (*)
├── tokio v0.2.22 (*)
└── twoway v0.2.1
    └── comrak v0.8.0 (*)

mime v0.2.6 (*)

mime v0.3.16
├── mime_guess v2.0.3
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   └── reqwest v0.10.6 (*)
└── reqwest v0.10.6 (*)

opaque-debug v0.2.3
└── sha-1 v0.8.2 (*)

opaque-debug v0.3.0
└── sha2 v0.9.1 (*)

parking_lot v0.10.2 (*)

parking_lot v0.11.0 (*)

parking_lot_core v0.7.2
└── parking_lot v0.10.2 (*)

parking_lot_core v0.8.0
└── parking_lot v0.11.0 (*)

percent-encoding v1.0.1
└── url v1.7.2 (*)

percent-encoding v2.1.0
├── reqwest v0.10.6 (*)
├── rusoto_core v0.45.0 (*)
├── rusoto_signature v0.45.0 (*)
├── rustwide v0.7.1 (*)
├── tera v1.3.1 (*)
├── tokio-postgres v0.5.5 (*)
└── url v2.1.1 (*)

time v0.1.43
├── chrono v0.4.11
│   ├── chrono-tz v0.5.1 (*)
│   ├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
│   ├── postgres-types v0.1.2 (*)
│   ├── procfs v0.7.9 (*)
│   ├── rusoto_credential v0.45.0 (*)
│   ├── systemstat v0.1.5 (*)
│   └── tera v1.3.1 (*)
├── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)
├── hyper v0.10.16 (*)
├── hyper v0.13.6 (*)
├── staticfile v0.4.0 (*)
└── systemstat v0.1.5 (*)
[build-dependencies]
└── cratesfyi v0.6.0 (/home/joshua/src/rust/docs.rs)

time v0.2.16
└── rusoto_signature v0.45.0 (*)

unicase v1.4.2
└── hyper v0.10.16 (*)

unicase v2.6.0
└── mime_guess v2.0.3 (*)
[build-dependencies]
└── mime_guess v2.0.3 (*)

url v1.7.2 (*)

url v2.1.1 (*)

version_check v0.1.5
[build-dependencies]
└── unicase v1.4.2 (*)

version_check v0.9.1
[build-dependencies]
├── generic-array v0.14.3 (*)
├── proc-macro-error v1.0.2
│   └── structopt-derive v0.4.7
│       └── structopt v0.3.14 (*)
├── proc-macro-error-attr v1.0.2
│   └── proc-macro-error v1.0.2 (*)
├── time v0.2.16 (*)
└── unicase v2.6.0 (*)

@jyn514 jyn514 added the A-newcomer-roadblock Area: A problem that isn't a bug, but makes it harder for people to contribute label Aug 2, 2020
@Nemo157
Copy link
Member

Nemo157 commented Aug 3, 2020

A few messy bits of reformatting, but they can be fixed when they next get touched

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-newcomer-roadblock Area: A problem that isn't a bug, but makes it harder for people to contribute C-technical-debt Category: This makes the code harder to read and modify, but has no impact on end users P-medium Medium priority S-waiting-on-review Status: This pull request has been implemented and needs to be reviewed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants