317 lines
6.9 KiB
TOML
317 lines
6.9 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2024"
|
|
name = "ironrdp-client"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Devolutions Inc. <infos@devolutions.net>",
|
|
"Teleport <goteleport.com>",
|
|
]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "Portable RDP client engine without GPU acceleration"
|
|
homepage = "https://github.com/Devolutions/IronRDP"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"rdp",
|
|
"remote-desktop",
|
|
"network",
|
|
"client",
|
|
"protocol",
|
|
]
|
|
categories = ["network-programming"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/Devolutions/IronRDP"
|
|
resolver = "2"
|
|
|
|
[features]
|
|
all = [
|
|
"sound",
|
|
"clipboard",
|
|
"rdpdr",
|
|
"smartcard",
|
|
"gateway",
|
|
"dvc-pipe-proxy",
|
|
"dvc-com-plugin",
|
|
]
|
|
clipboard = [
|
|
"dep:ironrdp-cliprdr",
|
|
"dep:ironrdp-cliprdr-native",
|
|
]
|
|
default = []
|
|
dvc-com-plugin = ["dep:ironrdp-dvc-com-plugin"]
|
|
dvc-pipe-proxy = ["dep:ironrdp-dvc-pipe-proxy"]
|
|
gateway = ["dep:ironrdp-mstsgu"]
|
|
native-tls = [
|
|
"ironrdp-tls/native-tls",
|
|
"tokio-tungstenite/native-tls",
|
|
"ironrdp-mstsgu?/native-tls",
|
|
]
|
|
qoi = [
|
|
"ironrdp-connector/qoi",
|
|
"ironrdp-session/qoi",
|
|
]
|
|
qoiz = [
|
|
"ironrdp-connector/qoiz",
|
|
"ironrdp-session/qoiz",
|
|
]
|
|
rdpdr = ["dep:ironrdp-rdpdr"]
|
|
rustls = [
|
|
"ironrdp-tls/rustls",
|
|
"tokio-tungstenite/rustls-tls-native-roots",
|
|
"ironrdp-mstsgu?/rustls",
|
|
]
|
|
smartcard = ["rdpdr"]
|
|
sound = [
|
|
"dep:ironrdp-rdpsnd",
|
|
"dep:ironrdp-rdpsnd-native",
|
|
]
|
|
|
|
[lib]
|
|
name = "ironrdp_client"
|
|
path = "src/lib.rs"
|
|
test = true
|
|
doctest = false
|
|
|
|
[dependencies.anyhow]
|
|
version = "1"
|
|
|
|
[dependencies.futures-util]
|
|
version = "0.3"
|
|
features = ["sink"]
|
|
|
|
[dependencies.ironrdp-cfg]
|
|
version = "0.1"
|
|
|
|
[dependencies.ironrdp-cliprdr]
|
|
version = "0.7"
|
|
optional = true
|
|
|
|
[dependencies.ironrdp-cliprdr-native]
|
|
version = "0.7"
|
|
optional = true
|
|
|
|
[dependencies.ironrdp-connector]
|
|
version = "0.10"
|
|
|
|
[dependencies.ironrdp-core]
|
|
version = "0.2"
|
|
features = ["alloc"]
|
|
|
|
[dependencies.ironrdp-displaycontrol]
|
|
version = "0.8"
|
|
|
|
[dependencies.ironrdp-dvc]
|
|
version = "0.8"
|
|
|
|
[dependencies.ironrdp-dvc-pipe-proxy]
|
|
version = "0.5"
|
|
optional = true
|
|
|
|
[dependencies.ironrdp-echo]
|
|
version = "0.4"
|
|
|
|
[dependencies.ironrdp-graphics]
|
|
version = "0.9"
|
|
|
|
[dependencies.ironrdp-mstsgu]
|
|
version = "0.0.1"
|
|
optional = true
|
|
|
|
[dependencies.ironrdp-pdu]
|
|
version = "0.9"
|
|
|
|
[dependencies.ironrdp-propertyset]
|
|
version = "0.1"
|
|
|
|
[dependencies.ironrdp-rdcleanpath]
|
|
version = "0.2"
|
|
|
|
[dependencies.ironrdp-rdpdr]
|
|
version = "0.7"
|
|
optional = true
|
|
|
|
[dependencies.ironrdp-rdpsnd]
|
|
version = "0.9"
|
|
optional = true
|
|
|
|
[dependencies.ironrdp-rdpsnd-native]
|
|
version = "0.7"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.ironrdp-session]
|
|
version = "0.11"
|
|
|
|
[dependencies.ironrdp-svc]
|
|
version = "0.8"
|
|
|
|
[dependencies.ironrdp-tls]
|
|
version = "0.2"
|
|
|
|
[dependencies.ironrdp-tokio]
|
|
version = "0.10"
|
|
features = ["reqwest"]
|
|
|
|
[dependencies.smallvec]
|
|
version = "1.15"
|
|
|
|
[dependencies.tokio]
|
|
version = "1"
|
|
features = [
|
|
"macros",
|
|
"net",
|
|
"io-util",
|
|
"sync",
|
|
"rt",
|
|
"time",
|
|
]
|
|
|
|
[dependencies.tokio-tungstenite]
|
|
version = "0.29"
|
|
|
|
[dependencies.tracing]
|
|
version = "0.1"
|
|
features = ["log"]
|
|
|
|
[dependencies.url]
|
|
version = "2"
|
|
|
|
[dependencies.x509-cert]
|
|
version = "0.2"
|
|
features = ["std"]
|
|
default-features = false
|
|
|
|
[target."cfg(windows)".dependencies.ironrdp-dvc-com-plugin]
|
|
version = "0.1"
|
|
optional = true
|
|
|
|
[lints.clippy]
|
|
alloc_instead_of_core = "warn"
|
|
allow_attributes = "warn"
|
|
as_conversions = "warn"
|
|
as_pointer_underscore = "warn"
|
|
as_ptr_cast_mut = "warn"
|
|
as_underscore = "warn"
|
|
cast_lossless = "warn"
|
|
cast_possible_truncation = "warn"
|
|
cast_possible_wrap = "warn"
|
|
cast_ptr_alignment = "warn"
|
|
cast_sign_loss = "warn"
|
|
cfg_not_test = "warn"
|
|
checked_conversions = "warn"
|
|
clone_on_ref_ptr = "warn"
|
|
cloned_instead_of_copied = "warn"
|
|
collection_is_never_read = "warn"
|
|
copy_iterator = "warn"
|
|
dbg_macro = "warn"
|
|
deref_by_slicing = "warn"
|
|
disallowed_script_idents = "warn"
|
|
doc_include_without_cfg = "warn"
|
|
empty_drop = "warn"
|
|
empty_enum_variants_with_brackets = "warn"
|
|
expl_impl_clone_on_copy = "warn"
|
|
filetype_is_file = "warn"
|
|
float_cmp = "warn"
|
|
float_cmp_const = "warn"
|
|
fn_to_numeric_cast_any = "warn"
|
|
get_unwrap = "warn"
|
|
implicit_clone = "warn"
|
|
infinite_loop = "warn"
|
|
inline_always = "warn"
|
|
large_futures = "warn"
|
|
large_include_file = "warn"
|
|
large_stack_frames = "warn"
|
|
large_types_passed_by_value = "warn"
|
|
lossy_float_literal = "warn"
|
|
map_with_unused_argument_over_ranges = "warn"
|
|
mem_forget = "warn"
|
|
missing_panics_doc = "warn"
|
|
missing_safety_doc = "warn"
|
|
mixed_read_write_in_expression = "warn"
|
|
multiple_inherent_impl = "warn"
|
|
multiple_unsafe_ops_per_block = "warn"
|
|
needless_raw_strings = "warn"
|
|
non_ascii_literal = "warn"
|
|
non_zero_suggestions = "warn"
|
|
or_fun_call = "warn"
|
|
panic = "warn"
|
|
partial_pub_fields = "warn"
|
|
precedence_bits = "warn"
|
|
print_stderr = "warn"
|
|
print_stdout = "warn"
|
|
ptr_cast_constness = "warn"
|
|
pub_without_shorthand = "warn"
|
|
range_plus_one = "warn"
|
|
rc_buffer = "warn"
|
|
rc_mutex = "warn"
|
|
redundant_clone = "warn"
|
|
redundant_type_annotations = "warn"
|
|
renamed_function_params = "warn"
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
return_self_not_must_use = "warn"
|
|
same_name_method = "warn"
|
|
self_named_module_files = "warn"
|
|
semicolon_outside_block = "warn"
|
|
separated_literal_suffix = "warn"
|
|
similar_names = "warn"
|
|
std_instead_of_core = "warn"
|
|
str_to_string = "warn"
|
|
string_add = "warn"
|
|
string_lit_chars_any = "warn"
|
|
string_slice = "warn"
|
|
suspicious_xor_used_as_pow = "warn"
|
|
todo = "warn"
|
|
trait_duplication_in_bounds = "warn"
|
|
transmute_ptr_to_ptr = "warn"
|
|
try_err = "warn"
|
|
type_repetition_in_bounds = "warn"
|
|
undocumented_unsafe_blocks = "warn"
|
|
unnecessary_box_returns = "warn"
|
|
unnecessary_safety_comment = "warn"
|
|
unnecessary_self_imports = "warn"
|
|
unused_result_ok = "warn"
|
|
unused_self = "warn"
|
|
unused_trait_names = "warn"
|
|
unwrap_used = "warn"
|
|
useless_let_if_seq = "warn"
|
|
wildcard_dependencies = "warn"
|
|
wildcard_imports = "warn"
|
|
|
|
[lints.rust]
|
|
absolute_paths_not_starting_with_crate = "warn"
|
|
ambiguous_negative_literals = "warn"
|
|
elided_lifetimes_in_paths = "warn"
|
|
invalid_reference_casting = "warn"
|
|
keyword_idents = "warn"
|
|
macro_use_extern_crate = "warn"
|
|
missing_unsafe_on_extern = "warn"
|
|
noop_method_call = "warn"
|
|
redundant_imports = "warn"
|
|
redundant_lifetimes = "warn"
|
|
single_use_lifetimes = "warn"
|
|
trivial_numeric_casts = "warn"
|
|
unit_bindings = "warn"
|
|
unreachable_pub = "warn"
|
|
unsafe_attr_outside_unsafe = "warn"
|
|
unsafe_op_in_unsafe_fn = "warn"
|
|
unused_crate_dependencies = "warn"
|
|
unused_lifetimes = "warn"
|
|
unused_macro_rules = "warn"
|
|
unused_qualifications = "warn"
|
|
unused_unsafe = "warn"
|