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
58 lines (55 loc) · 1.46 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (55 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
resolver = "2"
members = [
"crates/echomirror-core",
"crates/echomirror-stellar",
"crates/echomirror-sync",
"crates/echomirror-ffi",
"crates/echomirror-wasm",
"crates/echomirror-python",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Echo Mirror Butler <dev@echomirror.dev>"]
repository = "https://github.com/Echo-Mirror-Butler/echomirror-sdk"
[workspace.dependencies]
# async runtime
tokio = { version = "1.38", features = ["full"] }
# serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
# Stellar SDK
stellar-sdk = { version = "0.9" }
# error handling
thiserror = "1.0"
anyhow = "1.0"
# async traits
async-trait = "0.1"
# time
chrono = { version = "0.4", features = ["serde"] }
# WASM
wasm-bindgen = { version = "0.2" }
wasm-bindgen-futures = { version = "0.4" }
js-sys = { version = "0.3" }
# FFI
uniffi = { version = "0.27" }
# Python bindings
pyo3 = { version = "0.22" }
pyo3-async-runtimes = { version = "0.22" }
# crypto
sha2 = "0.10"
hex = "0.4"
# random
rand = "0.8"
# streaming sync
eventsource-stream = "0.2"
tokio-util = "0.7"
tracing = "0.1"
# postgres cursor store (optional feature of echomirror-sync)
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "tls-rustls", "postgres", "chrono", "migrate", "macros"] }
# testing
wiremock = "0.6"