mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00
29 lines
622 B
TOML
29 lines
622 B
TOML
[package]
|
|
name = "ironrdp-svc"
|
|
version = "0.3.0"
|
|
readme = "README.md"
|
|
description = "IronRDP traits to implement RDP static virtual channels"
|
|
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
|
|
|
|
[features]
|
|
default = []
|
|
std = []
|
|
|
|
[dependencies]
|
|
ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public
|
|
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4", features = ["alloc", "std"] } # public
|
|
bitflags = "2.4"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|