kachapopopow 21 hours ago

I was slightly curious: cargo tree llm v0.1.0 (RustGPT) ├── ndarray v0.16.1 │ ├── matrixmultiply v0.3.9 │ │ └── rawpointer v0.2.1 │ │ [build-dependencies] │ │ └── autocfg v1.4.0 │ ├── num-complex v0.4.6 │ │ └── num-traits v0.2.19 │ │ └── libm v0.2.15 │ │ [build-dependencies] │ │ └── autocfg v1.4.0 │ ├── num-integer v0.1.46 │ │ └── num-traits v0.2.19 () │ ├── num-traits v0.2.19 () │ └── rawpointer v0.2.1 ├── rand v0.9.0 │ ├── rand_chacha v0.9.0 │ │ ├── ppv-lite86 v0.2.20 │ │ │ └── zerocopy v0.7.35 │ │ │ ├── byteorder v1.5.0 │ │ │ └── zerocopy-derive v0.7.35 (proc-macro) │ │ │ ├── proc-macro2 v1.0.94 │ │ │ │ └── unicode-ident v1.0.18 │ │ │ ├── quote v1.0.39 │ │ │ │ └── proc-macro2 v1.0.94 () │ │ │ └── syn v2.0.99 │ │ │ ├── proc-macro2 v1.0.94 () │ │ │ ├── quote v1.0.39 () │ │ │ └── unicode-ident v1.0.18 │ │ └── rand_core v0.9.3 │ │ └── getrandom v0.3.1 │ │ ├── cfg-if v1.0.0 │ │ └── libc v0.2.170 │ ├── rand_core v0.9.3 () │ └── zerocopy v0.8.23 └── rand_distr v0.5.1 ├── num-traits v0.2.19 () └── rand v0.9.0 ()

yep, still looks relatively good.

  • imtringued 19 hours ago

        cargo tree llm v0.1.0 (RustGPT)
        ├── ndarray v0.16.1
        │   ├── matrixmultiply v0.3.9
        │   │   └── rawpointer v0.2.1
        │   │       [build-dependencies]
        │   │       └── autocfg v1.4.
        │   ├── num-complex v0.4.6
        │   │   └── num-traits v0.2.19
        │   │       └── libm v0.2.15
        │   │           [build-dependencies]
        │   │           └── autocfg v1.4.0
        │   ├── num-integer v0.1.46
        │   │   └── num-traits v0.2.19 ()
        │   ├── num-traits v0.2.19 ()
        │   └── rawpointer v0.2.1
        ├── rand v0.9.0
        │   ├── rand_chacha v0.9.0
        │   │   ├── ppv-lite86 v0.2.20
        │   │   │   └── zerocopy v0.7.35
        │   │   │       ├── byteorder v1.5.0
        │   │   │       └── zerocopy-derive v0.7.35 (proc-macro)
        │   │   │           ├── proc-macro2 v1.0.94
        │   │   │           │   └── unicode-ident v1.0.18
        │   │   │           ├── quote v1.0.39
        │   │   │           │   └── proc-macro2 v1.0.94 ()
        │   │   │           └── syn v2.0.99
        │   │   │               ├── proc-macro2 v1.0.94 ()
        │   │   │               ├── quote v1.0.39 ()
        │   │   │               └── unicode-ident v1.0.18
        │   │   └── rand_core v0.9.3
        │   │       └── getrandom v0.3.1
        │   │           ├── cfg-if v1.0.0
        │   │           └── libc v0.2.170
        │   ├── rand_core v0.9.3 ()
        │   └── zerocopy v0.8.23
        └── rand_distr v0.5.1
            ├── num-traits v0.2.19 ()
            └── rand v0.9.0 ()
  • cmrdporcupine 20 hours ago

    linking both rand-core 0.9.0 and rand-core 0.9.3 which the project could maybe avoid by just specifying 0.9 for its own dep on it

    • Diggsey 16 hours ago

      It doesn't link two versions of `rand-core`. That's not even possible with rust (you can only link two semver-incompatible versions of the same crate). And dependency specifications in Rust don't work like that - unless you explicitly override it, all dependencies are semver constraints, so "0.9.0" will happily match "0.9.3".

      • 0xffff2 14 hours ago

        So there's no difference at all between "0", "0.9" and "0.9.3" in cargo.toml (Since semver says only major version numbers are breaking)? As a decently experienced Rust developer, that's deeply surprising to me.

        What if devs don't do a good job of versioning and there is a real incompatibility between 0.9.3 and 0.9.4? Surely there's some way to actually require an exact version?

      • eximius 15 hours ago

        This doesn't sound right. If A depends on B and C - B and C can each bring their own versions of D, I thought?

worldsavior 16 hours ago

This doesn't mean anything. A project can implement things from scratch inefficiently but there might be other libraries the project can use instead of reimplementing.

tonyhart7 21 hours ago

is this satire or does I must know context behind this comment???

  • stevedonovan 21 hours ago

    These are a few well-chosen dependencies for a serious project.

    Rust projects can really go bananas on dependencies, partly because it's so easy to include them

  • obsoleszenz 21 hours ago

    The project only has 3 dependencies which i interpret as a sign of quality

  • leoh 15 hours ago

    I don't know if OP intended satire, but either way it is an absurd comment. Think about how "from scratch" this really is.