Skip to content

Instantly share code, notes, and snippets.

@algesten
Created December 29, 2021 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save algesten/9617fc795f2fc94009f1ed311b1d21b2 to your computer and use it in GitHub Desktop.
Save algesten/9617fc795f2fc94009f1ed311b1d21b2 to your computer and use it in GitHub Desktop.
stokast deps
stokast v0.1.0 (/Users/martin/dev/stokast)
├── alg v0.1.0 (/Users/martin/dev/alg)
│ ├── gcd v2.0.1
│ └── log v0.4.14
│ └── cfg-if v1.0.0
├── arrayvec v0.7.1
├── cortex-m v0.6.7
│ ├── aligned v0.3.5
│ │ └── as-slice v0.1.5
│ │ ├── generic-array v0.12.4
│ │ │ └── typenum v1.13.0
│ │ ├── generic-array v0.13.3
│ │ │ └── typenum v1.13.0
│ │ ├── generic-array v0.14.4
│ │ │ └── typenum v1.13.0
│ │ │ [build-dependencies]
│ │ │ └── version_check v0.9.3
│ │ └── stable_deref_trait v1.2.0
│ ├── bare-metal v0.2.5
│ │ [build-dependencies]
│ │ └── rustc_version v0.2.3
│ │ └── semver v0.9.0
│ │ └── semver-parser v0.7.0
│ ├── bitfield v0.13.2
│ ├── cortex-m v0.7.3
│ │ ├── bare-metal v0.2.5 (*)
│ │ ├── bitfield v0.13.2
│ │ ├── embedded-hal v0.2.6
│ │ │ ├── nb v0.1.3
│ │ │ │ └── nb v1.0.0
│ │ │ └── void v1.0.2
│ │ └── volatile-register v0.2.1
│ │ └── vcell v0.1.3
│ └── volatile-register v0.2.1 (*)
├── cortex-m-rt v0.6.15
│ ├── cortex-m-rt-macros v0.6.15 (proc-macro)
│ │ ├── proc-macro2 v1.0.28
│ │ │ └── unicode-xid v0.2.2
│ │ ├── quote v1.0.9
│ │ │ └── proc-macro2 v1.0.28 (*)
│ │ └── syn v1.0.75
│ │ ├── proc-macro2 v1.0.28 (*)
│ │ ├── quote v1.0.9 (*)
│ │ └── unicode-xid v0.2.2
│ └── r0 v0.2.2
├── embedded-hal v0.2.6 (*)
├── imxrt-hal v0.4.4
│ ├── as-slice v0.1.5 (*)
│ ├── bitflags v1.3.2
│ ├── cortex-m v0.6.7 (*)
│ ├── embedded-hal v0.2.6 (*)
│ ├── imxrt-iomuxc v0.1.3
│ │ └── typenum v1.13.0
│ │ [build-dependencies]
│ │ └── imxrt-iomuxc-build v0.1.0
│ │ └── quote v1.0.9 (*)
│ ├── imxrt-ral v0.4.2
│ │ ├── bare-metal v0.2.5 (*)
│ │ └── cortex-m v0.6.7 (*)
│ ├── log v0.4.14 (*)
│ ├── nb v0.1.3 (*)
│ └── void v1.0.2
├── imxrt-ral v0.4.2 (*)
├── log v0.4.14 (*)
└── teensy4-bsp v0.2.0
├── cortex-m v0.6.7 (*)
├── cortex-m-rt v0.6.15 (*)
├── embedded-hal v0.2.6 (*)
├── imxrt-hal v0.4.4 (*)
├── log v0.4.14 (*)
├── teensy4-fcb v0.3.0
│ └── imxrt-boot-gen v0.2.0
└── teensy4-pins v0.1.0
└── imxrt-iomuxc v0.1.3 (*)
@algesten
Copy link
Author

$ cargo tree -e normal --no-dedupe --prefix none | sort | uniq -c | sort -nr
  30 typenum v1.13.0
  17 bare-metal v0.2.5
  14 volatile-register v0.2.1
  14 vcell v0.1.3
  14 bitfield v0.13.2
  13 void v1.0.2
  13 nb v1.0.0
  13 nb v0.1.3
  11 embedded-hal v0.2.6
  10 unicode-xid v0.2.2
   9 stable_deref_trait v1.2.0
   9 generic-array v0.14.4
   9 generic-array v0.13.3
   9 generic-array v0.12.4
   9 as-slice v0.1.5
   8 proc-macro2 v1.0.28
   7 cortex-m v0.7.3
   7 cortex-m v0.6.7
   7 aligned v0.3.5
   5 log v0.4.14
   5 cfg-if v1.0.0
   4 quote v1.0.9
   3 imxrt-ral v0.4.2
   3 imxrt-iomuxc v0.1.3
   2 syn v1.0.75
   2 r0 v0.2.2
   2 imxrt-hal v0.4.4
   2 cortex-m-rt-macros v0.6.15 (proc-macro)
   2 cortex-m-rt v0.6.15
   2 bitflags v1.3.2
   1 teensy4-pins v0.1.0
   1 teensy4-fcb v0.3.0
   1 teensy4-bsp v0.2.0
   1 stokast v0.1.0 (/Users/martin/dev/stokast)
   1 imxrt-boot-gen v0.2.0
   1 gcd v2.0.1
   1 arrayvec v0.7.1
   1 alg v0.1.0 (/Users/martin/dev/alg)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment