1
0
Files
synapse/rust/Cargo.toml
Erik Johnston 53e83c76b2 SNAPSHOT
2022-09-09 16:22:45 +01:00

25 lines
602 B
TOML

[package]
# We name the package `synapse` so that things like logging have the right
# logging target.
name = "synapse"
# dummy version. See pyproject.toml for the Synapse's version number.
version = "0.1.0"
edition = "2021"
rust-version = "1.61.0"
[lib]
name = "synapse"
crate-type = ["cdylib"]
[package.metadata.maturin]
# This is where we tell maturin where to place the built library.
name = "synapse.synapse_rust"
[dependencies]
intrusive-collections = "0.9.4"
lazy_static = "1.4.0"
log = "0.4.17"
pyo3 = { version = "0.16.5", features = ["extension-module", "macros", "abi3", "abi3-py37"] }