-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
31 lines (25 loc) · 919 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
[package]
name = "did_url"
version = "0.1.0"
authors = ["l1h3r <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A no_std parser for Decentralized Identifiers (DIDs)"
repository = "https://github.com/l1h3r/did_url"
keywords = ["decentralized", "identity", "did"]
categories = ["parser-implementations", "encoding"]
include = ["src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
readme = "README.md"
[dependencies]
form_urlencoded = { version = "1.0", default-features = false }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"], optional = true }
[dev-dependencies]
proptest = { version = "0.10.1" }
[features]
default = ["std"]
# Enables functionality requiring the `std` crate.
std = ["alloc"]
# Enables functionality requiring the `alloc` crate.
alloc = []
# Adds Deserialize/Serialize implementations for `DID`.
# serde = []