[package]
edition = "2021"
name = "csv-rs"
version = "0.1.0"
authors = ["fangbaoshun <fangbaoshun@hygon.cn>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for HYGON CSV and DCU"
readme = "README.md"
keywords = [
"hygon",
"csv",
"dcu",
]
license = "Apache-2.0"
[features]
dangerous_hw_tests = ["hw_tests"]
hw_tests = []
network = ["dep:reqwest"]
[lib]
name = "csv_rs"
path = "src/lib.rs"
[[test]]
name = "certs"
path = "tests/certs.rs"
[[test]]
name = "crypto"
path = "tests/crypto.rs"
[[test]]
name = "dcu"
path = "tests/dcu.rs"
[[test]]
name = "guest"
path = "tests/guest.rs"
[[test]]
name = "platform"
path = "tests/platform.rs"
[dependencies.bincode]
version = "1.3"
[dependencies.bitfield]
version = "^0.13"
[dependencies.bitflags]
version = "1.2"
[dependencies.codicon]
version = "3.0"
[dependencies.dirs]
version = "5.0"
[dependencies.hex]
version = "0.4.3"
[dependencies.hyper]
version = "0.14"
features = ["full"]
[dependencies.hyper-tls]
version = "0.5"
[dependencies.iocuddle]
version = "0.1.1"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dependencies.openssl-sys]
version = "0.9"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde-big-array]
version = "0.5.1"
[dependencies.serde_bytes]
version = "0.11.8"
[dependencies.static_assertions]
version = "1.1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.serial_test]
version = "2.0"
[dev-dependencies.test-log]
version = "0.2"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(ossl111)",
"cfg(ossl300)",
]