File: init.stdout

package info (click to toggle)
python-maturin 1.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 4,540 kB
  • sloc: python: 656; javascript: 93; sh: 55; makefile: 10
file content (34 lines) | stat: -rw-r--r-- 1,053 bytes parent folder | download | duplicates (3)
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 in an existing directory

Usage: maturin[EXE] init [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')