Closed stuaxo closed 1 year ago
typing.Self was introduced in python 3.11 - the readme mentions 3.9 and may want bumping.
Doh! Fixed in 6f7db413a6e68913dc6df2e0ac75064bff87a0f2.
I was using rustup and had to create a file rust-toolchain with the content nightly in the example directory to build (though; I'm very new to rust so not entirely sure what I'm doing).
That makes two of us :smile:
Since the example requires nightly, I added a rust-toolchain.toml
file to the example project in 42e5646c47b1f4c3438c5944cae46ebfbb51c81d.
That makes two of us :smile: That's reassuring, I think being able to make stuff for DOS might be what gets me into rust :)
Re: needing rust nightly - I don't know why it's the place that you get -Z
error: the `-Z` flag is only accepted on the nightly channel of Cargo, but this is the `stable` channel
TLDR: Probably worth mentioning in the readme as well; maybe not everyone uses rustup ?
Closing this ticket as the 3.11 thing is sorted.
typing.Self was introduced in python 3.11 - the readme mentions 3.9 and may want bumping.
I was using rustup and had to create a file
rust-toolchain
with the contentnightly
in the example directory to build (though; I'm very new to rust so not entirely sure what I'm doing).After that I could build and run the example in dosbox (though on first runthrough I lost concentration so had run
make
notmake debug
or `make release).