view mercurial/__main__.py @ 52049:a8cf6a852f11

rust-dirstate: pass dirstate tracked key from the requirements We will make use of this with the `hg update` fastpath
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 02 Oct 2024 18:31:32 +0200
parents 1c5810ce737e
children
line wrap: on
line source

from __future__ import annotations


def run():
    from . import demandimport

    with demandimport.tracing.log('hg script'):
        demandimport.enable()
        from . import dispatch

        dispatch.run()


if __name__ == '__main__':
    run()