blob: 5ead11e068f005425b9b34780ca1f8ad7fd74b1d [file] [log] [blame]
[package]
name = "yasna"
version = "0.1.3"
authors = ["Masaki Hara <ackie.h.gmai@gmail.com>"]
description = "ASN.1 library for Rust"
documentation = "https://qnighy.github.io/yasna.rs"
homepage = "https://github.com/qnighy/yasna.rs"
repository = "https://github.com/qnighy/yasna.rs"
readme = "README.md"
keywords = ["parser", "serialization"]
license = "MIT/Apache-2.0"
include = [
"src/**/*.rs",
"Cargo.toml",
]
[features]
default = ["bigint", "bitvec"]
bigint = ["num-bigint"]
bitvec = ["bit-vec"]
[dependencies]
[dependencies.num-bigint]
path = "../num/bigint"
optional = true
[dependencies.bit-vec]
path = "../bit-vec"
default-features = false
optional = true
[target.'cfg(not(target_env = "sgx"))'.dependencies]
sgx_tstd = { path = "../../sgx_tstd" }