mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-12-23 12:26:46 +00:00
Some checks failed
CI / Check formatting (push) Has been cancelled
CI / Check typos (push) Has been cancelled
Coverage / Coverage Report (push) Has been cancelled
Release crates / Open release PR (push) Has been cancelled
Release crates / Release crates (push) Has been cancelled
CI / Fuzzing (push) Has been cancelled
CI / Web Client (push) Has been cancelled
CI / Checks [linux] (push) Has been cancelled
CI / Checks [macos] (push) Has been cancelled
CI / Checks [windows] (push) Has been cancelled
CI / FFI (push) Has been cancelled
CI / Success (push) Has been cancelled
36 lines
840 B
TOML
36 lines
840 B
TOML
[package]
|
|
name = "ironrdp-graphics"
|
|
version = "0.7.0"
|
|
readme = "README.md"
|
|
description = "RDP image processing primitives"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
# test = false
|
|
|
|
[dependencies]
|
|
bit_field = "0.10"
|
|
bitflags = "2.9"
|
|
bitvec = "1.0"
|
|
ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public
|
|
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.6", features = ["std"] } # public
|
|
byteorder = "1.5" # TODO: remove
|
|
num-derive.workspace = true # TODO: remove
|
|
num-traits.workspace = true # TODO: remove
|
|
yuv = { version = "0.8", features = ["rdp"] }
|
|
|
|
[dev-dependencies]
|
|
bmp = "0.5"
|
|
bytemuck = "1.24"
|
|
expect-test.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|