-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (28 loc) · 867 Bytes
/
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
[package]
name = "libipld"
version = "3.0.0"
edition = "2021"
license = "MIT"
description = "Python binding to the Rust IPLD library"
authors = ["Ilya (Marshal) <[email protected]>"]
keywords = ["python", "binding", "library", "lib", "ipld", "cid", "multibase", "multihash", "dag", "cbor", "json", "pb", "dag-cbor", "dag-json"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "libipld"
crate-type = ["rlib", "cdylib"]
[dependencies]
pyo3 = { version = "0.22.5", features = ["generate-import-lib", "anyhow"] }
python3-dll-a = "0.2.10"
anyhow = "1.0.75"
libipld = { version = "0.16.0", features = ["dag-cbor"] }
multibase = "0.9"
byteorder = "1.5.0"
multihash = "0.18.1"
[workspace]
members = [ "profiling" ]
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
opt-level = 3