logoalt Hacker News

dizietyesterday at 10:07 PM3 repliesview on HN

I love llm coding. I don't know what I am looking at here

https://github.com/malisper/pgrust/blob/main/Cargo.lock

What is happening.

No PRs? No Make files? I understand running tests and debugging is the workflow, but where do you log things? How do you orchestrate builds? Etc.


Replies

antonvstoday at 5:48 PM

Like most modern languages, Rust has its own build system and package manager, Cargo. Everything you're referring to relates to that, and has nothing to do with LLM coding.

Edit: saw the clarification in another comment. But, in that case the essential point seems to be "I'm not familiar with something, therefore it's suspect."

nemothekidyesterday at 10:17 PM

`Cargo.lock` is a lockfile machine generated by Cargo. It's similar to package-lock.json. In any case, its machine generated the old fashioned way.

show 1 reply
kaoDtoday at 8:14 AM

> I love llm coding. I don't know what I am looking at here

There might be some correlation here.

show 1 reply