-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
68 lines (59 loc) · 1.53 KB
/
Cargo.toml
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
59
60
61
62
63
64
65
66
67
68
[package]
name = "iroh-ffi"
version = "0.28.1"
edition = "2021"
publish = false
readme = "README.md"
description = "A toolkit for building distributed applications"
license = "MIT OR Apache-2.0"
authors = ["n0 team"]
repository = "https://github.com/n0-computer/iroh-ffi"
homepage = "https://iroh.computer"
documentation = "https://iroh.computer/docs"
rust-version = "1.75"
[workspace]
members = [
"iroh-js",
]
[package.metadata.maturin]
name = "iroh"
[lib]
name = "iroh_ffi"
crate-type = ["staticlib", "cdylib"]
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
[dependencies]
anyhow = "1.0.69"
async-trait = "0.1.80"
blake3 = "1.3.3"
bytes = "1"
data-encoding = { version = "2.3.3" }
iroh = { version = "0.28.1" }
iroh-io = { version = "0.6" }
libc = "0.2.141"
num_cpus = { version = "1.15.0" }
range-collections = "0.4.0"
thiserror = "1.0.44"
tokio = "1.25.0"
tokio-util = { version = "0.7", features = ["io-util", "io"] }
uniffi = { version = "0.28.0", features = ["cli", "tokio"] }
url = "2.4"
flume = "0.11"
futures = "0.3.28"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17" }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
futures-lite = "2.3.0"
derive_more = { version = "1.0.0", features = ["debug"] }
iroh-gossip = "0.28.1"
[dev-dependencies]
rand = "0.8"
tempfile = "3.4"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tokio = { version = "1", features = ["full"] }
[build-dependencies]
uniffi = { version = "0.28.0", features = ["build"] }
[profile.release]
lto = true