mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 21:58:00 +00:00
ff6fc1585e
* Add FFI example * Remove unnecessary dependency (libc) * Tweak python example and add CI CI Tweak; separate task for ffi-example run * Remove OnceCell dep; use std --------- Co-authored-by: wassimans <wassim@wassimans.com>
15 lines
265 B
TOML
15 lines
265 B
TOML
[package]
|
|
name = "subxt-ffi"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
hex = "0.4.3"
|
|
subxt = { path = "../../subxt" }
|
|
subxt-signer = { path = "../../signer" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "subxt_ffi"
|