forked from MarshalX/python-libipld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 789 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 789 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
25
26
27
28
29
30
31
32
[package]
name = "libipld"
version = "3.0.1"
edition = "2021"
license = "MIT"
description = "Python binding to the Rust IPLD library"
authors = ["Ilya (Marshal) <ilya@marshal.dev>"]
keywords = ["ipld", "cid", "multibase", "multihash", "dag-cbor"]
# 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.25.1", features = ["generate-import-lib", "anyhow"] }
python3-dll-a = "0.2.14"
anyhow = "1.0.95"
libipld = { version = "0.16.0", features = ["dag-cbor"] }
multibase = "0.9.1"
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