File: Cargo.toml.orig

package info (click to toggle)
rust-multibase 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 132 kB
  • sloc: makefile: 2
file content (31 lines) | stat: -rw-r--r-- 751 bytes parent folder | download
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
[package]
name = "multibase"
version = "0.9.1"
authors = ["Friedel Ziegelmayer <dignifiedquire@gmail.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "multibase in rust"
homepage = "https://github.com/multiformats/rust-multibase"
repository = "https://github.com/multiformats/rust-multibase"
keywords = ["ipld", "ipfs", "multihash", "cid", "no_std"]

[features]
default = ["std"]
std = ["data-encoding/std"]

[dependencies]
base-x = { version = "0.2.7", default-features = false }
data-encoding = { version = "2.3.1", default-features = false, features = ["alloc"] }
data-encoding-macro = "0.1.9"

[dev-dependencies]
criterion = "0.3"
rand = "0.7"

[[bench]]
name = "multibase"
harness = false

[workspace]
members = ["cli"]