|
|
|
|
|
by tubthumper8
520 days ago
|
|
Sorry to have disappointed you. I don't walk, talk, or sleep either Rust or Go, but was trying to provide some resources to help in case you hadn't seen them yet. One difference I noticed in the docs is in the Go Reference it says the "go" line of the "go.mod" has to be greater than or equal to the go line of all that modules dependencies, if the go line is 1.21 or higher, so a module for 1.21 can't depend on a module for 1.22 [1] That restriction doesn't apply for Rust, a library using the 2015 edition can use a dependency that uses the 2018 edition, for example. That's just one difference I noticed in the implementation. The goals seem very similar if not the same [1] https://go.dev/doc/modules/gomod-ref#go |
|