Skip to content

Commit 7951200

Browse files
author
Martin Larralde
committed
Add tomlgen_rust to distutils commands
1 parent 3cc5866 commit 7951200

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
build_ext=setuptools_rust:build_ext
3939
build_rust=setuptools_rust:build_rust
4040
test_rust=setuptools_rust:test_rust
41+
tomlgen_rust=setuptools_rust:tomlgen_rust
4142
"""
4243
)

setuptools_rust/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
from .build_ext import build_ext
66
from .check import check_rust
77
from .clean import clean_rust
8-
from .test import test_rust
98
from .extension import RustExtension
9+
from .test import test_rust
10+
from .tomlgen import tomlgen_rust, find_rust_extensions
1011
from .utils import Binding, Strip
1112

1213
__all__ = ('RustExtension', 'Binding', 'Strip',

0 commit comments

Comments
 (0)