forked from Echo-Mirror-Butler/echomirror-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 784 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (21 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "echomirror-python"
description = "PyO3 native bindings for the EchoMirror SDK — Mood, Stellar, and Social APIs, with asyncio support"
version.workspace = true
edition.workspace = true
license.workspace = true
[lib]
# Must match the `module-name` leaf in pyproject.toml ([tool.maturin]).
name = "_echomirror"
crate-type = ["cdylib", "rlib"]
[dependencies]
echomirror-core = { path = "../echomirror-core" }
echomirror-stellar = { path = "../echomirror-stellar" }
pyo3 = { workspace = true, features = ["extension-module"] }
pyo3-async-runtimes = { workspace = true, features = ["tokio-runtime"] }
tokio.workspace = true
serde_json.workspace = true
chrono.workspace = true
[package.metadata.maturin]
python-source = "python"
module-name = "echomirror._echomirror"