/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "ipld-inline"
 3  version = "0.1.0"
 4  edition = "2021"
 5  authors = ["Brooklyn Zelenka <hello@brooklynzelenka.com>"]
 6  license = "Apache-2.0"
 7  readme = "README.md"
 8  
 9  [lib]
10  path = "src/lib.rs"
11  bench = false
12  
13  [dependencies]
14  libipld-core = "0.16"
15  thiserror    = "1.0"
16  
17  [dev-dependencies]
18  criterion = "0.5"
19  proptest = "1.4"
20  
21  [metadata.docs.rs]
22  all-features = true
23  rustdoc-args = ["--cfg", "docsrs"] # defines the configuration attribute `docsrs`
24  
25  # Speedup build on macOS
26  # See https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#splitting-debug-information
27  [profile.dev]
28  split-debuginfo = "unpacked"