1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Create a new cargo project
Usage: maturin[EXE] new [OPTIONS] <PATH>
Arguments:
<PATH>
Project path
Options:
--name <NAME>
Set the resulting package name, defaults to the directory name
-v, --verbose...
Use verbose output.
* Default: Show build information and `cargo build` output. * `-v`: Use `cargo build -v`.
* `-vv`: Show debug logging and use `cargo build -vv`. * `-vvv`: Show trace logging.
You can configure fine-grained logging using the `RUST_LOG` environment variable.
(<https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#directives>)
--mixed
Use mixed Rust/Python project layout
--src
Use Python first src layout for mixed Rust/Python project
-b, --bindings <BINDINGS>
Which kind of bindings to use
[possible values: pyo3, cffi, uniffi, bin]
-h, --help
Print help (see a summary with '-h')
|