mirror of
https://github.com/gravitational/teleport.git
synced 2026-09-19 11:00:37 +08:00
* Move `teleport/ironrdp` to `shared/libs/ironrdp` * Do not import `teleport/lib/AuthenticatedWebSocket` in `TdpClient` * Do not import other `teleport` stuff in `TdpClient` * Move `teleport/lib/tdp` to `shared/libs/tdp` * Move `teleport/components/TdpClientCanvas` to `shared/components/CanvasRenderer` * Move `teleport/DesktopSession` to `shared/components/DesktopSession` * Bring back `teleport/DesktopSession` * Improve old artifacts cleaning * Fix path in README.md
39 lines
2.1 KiB
TOML
39 lines
2.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["lib/srv/desktop/rdp/rdpclient", "web/packages/shared/libs/ironrdp"]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
homepage = "https://github.com/gravitational/teleport"
|
|
repository = "https://github.com/gravitational/teleport"
|
|
publish = false
|
|
|
|
[profile.dev]
|
|
debug = 1
|
|
lto = "off"
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
codegen-units = 1
|
|
lto = "thin"
|
|
|
|
[workspace.dependencies]
|
|
# Note: To use a local IronRDP repository as a crate (for example, ironrdp-cliprdr), define the dependency as follows:
|
|
# ironrdp-cliprdr = { path = "/path/to/local/IronRDP/crates/ironrdp-cliprdr" }
|
|
ironrdp-cliprdr = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-connector = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-core = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-displaycontrol = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-dvc = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-graphics = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-pdu = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-rdpdr = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-rdpsnd = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-session = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-svc = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|
|
ironrdp-tls = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2", features = [
|
|
"rustls",
|
|
] }
|
|
ironrdp-tokio = { git = "https://github.com/Devolutions/IronRDP", rev = "dd221bf22401c4635798ec012724cba7e6d503b2" }
|