Difficult-Rocket/libs/Difficult_Rocket_rs/src/Cargo.toml

21 lines
421 B
TOML
Raw Normal View History

2023-01-20 13:52:58 +08:00
[package]
2023-01-23 00:01:01 +08:00
name = "difficult_rocket_rs"
2023-02-12 17:27:24 +08:00
version = "0.2.0"
2023-01-20 13:52:58 +08:00
edition = "2021"
2023-01-23 00:01:01 +08:00
license-file = '../../LICENSE'
2023-01-20 13:52:58 +08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-01-20 14:08:12 +08:00
[lib]
name = 'Difficult_Rocket_rs'
2023-01-24 08:24:31 +08:00
crate-type = ["cdylib"]
2023-01-20 14:08:12 +08:00
2023-02-12 17:27:24 +08:00
[dependencies.rapier2d]
version = "0.17.1"
features = ["simd-stable"]
2023-01-20 13:52:58 +08:00
[dependencies.pyo3]
version = "0.18.0"
2023-01-24 08:24:31 +08:00
features = ["extension-module"]