commit d6cef195072a22f2f8af6ef109b1589d34bbdab0 Author: mae Date: Sun Jul 12 14:51:31 2026 -0500 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..08cb523 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +go.sum diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0742c9b --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Mae Rosaline + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..631f1fa --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# feynman +this is a really stupid project that probably isn't going anywhere. +if you're reading this, though, it's an attempt to make cargo (the rust package manager) +deterministic. by reimplementing it. in go. + +why it's called feynman: https://en.wikipedia.org/wiki/Surely_You%27re_Joking,_Mr._Feynman!#Cargo_Cult_Science \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..7972b30 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module feynman + +go 1.26.1 + +require github.com/pelletier/go-toml/v2 v2.4.3 // indirect