mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Add Rust support
This commit is contained in:
parent
884e78e255
commit
7f85da1b9d
3 changed files with 71 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ from pre_commit.languages import pygrep
|
||||||
from pre_commit.languages import python
|
from pre_commit.languages import python
|
||||||
from pre_commit.languages import python_venv
|
from pre_commit.languages import python_venv
|
||||||
from pre_commit.languages import ruby
|
from pre_commit.languages import ruby
|
||||||
|
from pre_commit.languages import rust
|
||||||
from pre_commit.languages import script
|
from pre_commit.languages import script
|
||||||
from pre_commit.languages import swift
|
from pre_commit.languages import swift
|
||||||
from pre_commit.languages import system
|
from pre_commit.languages import system
|
||||||
|
|
@ -60,6 +61,7 @@ languages = {
|
||||||
'python': python,
|
'python': python,
|
||||||
'python_venv': python_venv,
|
'python_venv': python_venv,
|
||||||
'ruby': ruby,
|
'ruby': ruby,
|
||||||
|
'rust': rust,
|
||||||
'script': script,
|
'script': script,
|
||||||
'swift': swift,
|
'swift': swift,
|
||||||
'system': system,
|
'system': system,
|
||||||
|
|
|
||||||
68
pre_commit/languages/rust.py
Normal file
68
pre_commit/languages/rust.py
Normal file
|
|
@ -0,0 +1,68 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import contextlib
|
||||||
|
import os.path
|
||||||
|
|
||||||
|
import toml
|
||||||
|
|
||||||
|
from pre_commit.envcontext import envcontext
|
||||||
|
from pre_commit.envcontext import Var
|
||||||
|
from pre_commit.languages import helpers
|
||||||
|
from pre_commit.util import clean_path_on_failure
|
||||||
|
from pre_commit.util import cmd_output
|
||||||
|
from pre_commit.xargs import xargs
|
||||||
|
|
||||||
|
|
||||||
|
ENVIRONMENT_DIR = 'rustenv'
|
||||||
|
get_default_version = helpers.basic_get_default_version
|
||||||
|
healthy = helpers.basic_healthy
|
||||||
|
|
||||||
|
|
||||||
|
def get_env_patch(target_dir):
|
||||||
|
return (
|
||||||
|
(
|
||||||
|
'PATH',
|
||||||
|
(os.path.join(target_dir, 'release'), os.pathsep, Var('PATH')),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@contextlib.contextmanager
|
||||||
|
def in_env(prefix):
|
||||||
|
target_dir = prefix.path(
|
||||||
|
helpers.environment_dir(ENVIRONMENT_DIR, 'default'),
|
||||||
|
)
|
||||||
|
with envcontext(get_env_patch(target_dir)):
|
||||||
|
yield
|
||||||
|
|
||||||
|
|
||||||
|
def _add_dependencies(cargo_toml_path, additional_dependencies):
|
||||||
|
with open(cargo_toml_path, 'r+') as f:
|
||||||
|
cargo_toml = toml.load(f)
|
||||||
|
for dep in additional_dependencies:
|
||||||
|
name, _, spec = dep.partition(':')
|
||||||
|
cargo_toml['dependencies'][name] = spec or '*'
|
||||||
|
f.seek(0)
|
||||||
|
toml.dump(cargo_toml, f)
|
||||||
|
f.truncate()
|
||||||
|
|
||||||
|
|
||||||
|
def install_environment(prefix, version, additional_dependencies):
|
||||||
|
helpers.assert_version_default('rust', version)
|
||||||
|
directory = prefix.path(
|
||||||
|
helpers.environment_dir(ENVIRONMENT_DIR, 'default'),
|
||||||
|
)
|
||||||
|
|
||||||
|
if len(additional_dependencies) > 0:
|
||||||
|
_add_dependencies(prefix.path('Cargo.toml'), additional_dependencies)
|
||||||
|
|
||||||
|
with clean_path_on_failure(directory):
|
||||||
|
cmd_output(
|
||||||
|
'cargo', 'build', '--release', '--bins', '--target-dir', directory,
|
||||||
|
cwd=prefix.prefix_dir,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def run_hook(prefix, hook, file_args):
|
||||||
|
with in_env(prefix):
|
||||||
|
return xargs(helpers.to_cmd(hook), file_args)
|
||||||
1
setup.py
1
setup.py
|
|
@ -42,6 +42,7 @@ setup(
|
||||||
'nodeenv>=0.11.1',
|
'nodeenv>=0.11.1',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
'six',
|
'six',
|
||||||
|
'toml',
|
||||||
'virtualenv',
|
'virtualenv',
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue