2022-05-12 02:12:17 +02:00
|
|
|
[package]
|
2022-05-15 13:02:53 +02:00
|
|
|
name = "aiocraft"
|
2023-11-20 17:50:53 +01:00
|
|
|
version = "0.3.0"
|
2022-05-12 02:12:17 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
2022-05-15 13:02:53 +02:00
|
|
|
name = "aiocraft"
|
|
|
|
path = "src/lib.rs" # The source file of the target.
|
2022-05-12 02:12:17 +02:00
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-15 13:02:53 +02:00
|
|
|
log = "0.4.17"
|
|
|
|
pyo3-log = "0.6.0"
|
2022-05-12 02:12:17 +02:00
|
|
|
pyo3 = { version = "0.16.4", features = ["extension-module"] }
|
2022-05-15 13:02:53 +02:00
|
|
|
|
|
|
|
[style]
|
|
|
|
use_tabs = true
|