-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 845 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 845 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
33
[package]
name = "multibase"
version = "0.9.2"
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", "base45/std"]
[dependencies]
base-x = { version = "0.2.7", default-features = false }
base256emoji = "1.0.2"
data-encoding = { version = "2.3.1", default-features = false, features = ["alloc"] }
data-encoding-macro = "0.1.9"
base45 = { version = "3.2.0", default-features = false }
[dev-dependencies]
criterion = "0.8"
rand = "0.9"
[[bench]]
name = "multibase"
harness = false
[workspace]
members = ["cli"]