mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
15 lines
373 B
Python
15 lines
373 B
Python
|
#!/usr/bin/env python
|
||
|
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
import sys
|
||
|
import re
|
||
|
|
||
|
# Read the package version from Cargo.toml and output as json
|
||
|
cargo_toml_path = sys.argv[1]
|
||
|
|
||
|
for line in open(cargo_toml_path):
|
||
|
match = re.search('version = "(.*)"', line)
|
||
|
if match:
|
||
|
print('{"version": "' + match.group(1) + '"}')
|
||
|
break
|