2024-05-09 23:30:18 +02:00
|
|
|
[package]
|
|
|
|
name = "servicepoint2"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-05-12 00:09:07 +02:00
|
|
|
license-file = "LICENSE"
|
|
|
|
description = "A rust library for the CCCB Service Point Display."
|
|
|
|
homepage = "https://github.com/kaesaecracker/servicepoint"
|
|
|
|
repository = "https://github.com/kaesaecracker/servicepoint"
|
|
|
|
readme = "README.md"
|
2024-05-09 23:30:18 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-05-10 18:33:51 +02:00
|
|
|
num = "0.4"
|
|
|
|
num-derive = "0.4"
|
2024-05-10 18:35:52 +02:00
|
|
|
num-traits = "0.2"
|
2024-05-11 21:14:20 +02:00
|
|
|
log = "0.4"
|
2024-05-11 23:16:41 +02:00
|
|
|
flate2 = { version = "1.0", optional = true }
|
|
|
|
bzip2 = { version = "0.4", optional = true }
|
|
|
|
lz4 = { version = "1.24", optional = true }
|
|
|
|
zstd = { version = "0.13", optional = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["compression-gz", "compression-bz", "compression-lz", "compression-zs"]
|
|
|
|
compression-gz = ["dep:flate2"]
|
|
|
|
compression-bz = ["dep:bzip2"]
|
|
|
|
compression-lz = ["dep:lz4"]
|
|
|
|
compression-zs = ["dep:zstd"]
|
|
|
|
|