aiocraft/Cargo.toml
alemidev f238d902fa
Changed build system to maturin to add rust extensions
This meant moving the python source out of src/ . I dislike this project
structure but will do for now while I think of something better.
setup.cfg is no longer needed and all options are either in pyproject.toml
or Cargo.toml. I still need to figure out a lot of stuff.

Co-authored-by: f-tlm <f-tlm@users.noreply.github.com>
2022-05-15 13:02:53 +02:00

17 lines
307 B
TOML

[package]
name = "aiocraft"
version = "1.0.0"
edition = "2021"
[lib]
name = "aiocraft"
path = "src/lib.rs" # The source file of the target.
crate-type = ["cdylib"]
[dependencies]
log = "0.4.17"
pyo3-log = "0.6.0"
pyo3 = { version = "0.16.4", features = ["extension-module"] }
[style]
use_tabs = true