mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
8 lines
187 B
Python
8 lines
187 B
Python
![]() |
import re
|
||
|
|
||
|
cargo_manifest = open("noita-proxy/Cargo.toml", "r").read()
|
||
|
version = re.findall('version = "(.*?)"', cargo_manifest)[0]
|
||
|
|
||
|
print("Version:", version)
|
||
|
assert version is not None
|