Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

SSL Cargo.toml   Sprache: unbekannt

 
rahmenlose Ansicht.toml DruckansichtUnknown {[0] [0] [0]}Mathematik

# 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"
rust-version = "1.90.0"
name = "neqo-bin"
version = "0.29.0"
authors = ["The Neqo Authors <necko@mozilla.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A basic QUIC HTTP/0.9 and HTTP/3 client and server."
homepage = "https://github.com/mozilla/neqo/"
readme = "../README.md"
keywords = [
    "quic",
    "http3",
    "neqo",
    "mozilla",
    "ietf",
    "firefox",
]
categories = [
    "network-programming",
    "web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mozilla/neqo/"

[package.metadata.cargo-machete]
ignored = [
    "cfg_aliases",
    "criterion",
    "test-fixture",
]

[[package.metadata.bench]]
name = "main"

[package.metadata.bench.codspeed]
mode = "walltime"
memory = false

[features]
bench = [
    "neqo-bin/bench",
    "neqo-http3/bench",
    "neqo-transport/bench",
    "log/release_max_level_info",
]
draft-29 = [
    "neqo-http3/draft-29",
    "neqo-transport/draft-29",
]

[lib]
name = "neqo_bin"
path = "src/lib.rs"
bench = false

[[bin]]
name = "neqo-client"
path = "src/bin/client.rs"
bench = false

[[bin]]
name = "neqo-server"
path = "src/bin/server.rs"
bench = false

[[bench]]
name = "main"
path = "benches/main.rs"
harness = false
required-features = ["bench"]

[dependencies.clap]
version = "4"
features = [
    "std",
    "help",
    "usage",
    "error-context",
    "suggestions",
    "derive",
]
default-features = false

[dependencies.clap-verbosity-flag]
version = "3"
features = ["log"]
default-features = false

[dependencies.futures]
version = "0.3"
features = ["alloc"]
default-features = false

[dependencies.hex]
version = "0.4"
features = ["std"]
default-features = false

[dependencies.http]
version = "1"
features = ["std"]
default-features = false

[dependencies.libc]
version = "0.2"
default-features = false

[dependencies.log]
version = "0.4"
default-features = false

[dependencies.neqo-common]
path = "./../neqo-common"

[dependencies.neqo-http3]
path = "./../neqo-http3"

[dependencies.neqo-transport]
path = "./../neqo-transport"

[dependencies.neqo-udp]
path = "./../neqo-udp"

[dependencies.nss]
version = "0.13.0"
git = "https://github.com/mozilla/nss-rs"
package = "nss-rs"

[dependencies.nss-test-fixture]
version = "0.1.0"
git = "https://github.com/mozilla/nss-rs"
package = "test-fixture"

[dependencies.qlog]
version = "0.16.0"
default-features = false

[dependencies.quinn-udp]
version = "0.6"
features = [
    "log",
    "fast-apple-datapath",
]
default-features = false

[dependencies.rustc-hash]
version = "2.1"
features = ["std"]
default-features = false

[dependencies.strum]
version = "0.27"
features = ["derive"]
default-features = false

[dependencies.thiserror]
version = "2.0.12"
default-features = false

[dependencies.tokio]
version = "1"
features = [
    "net",
    "time",
    "macros",
    "rt",
]
default-features = false

[dev-dependencies.criterion]
version = "4"
features = ["async_tokio"]
default-features = false
package = "codspeed-criterion-compat"

[dev-dependencies.neqo-bin]
path = "."
features = ["draft-29"]

[dev-dependencies.test-fixture]
path = "../test-fixture"

[dev-dependencies.tokio]
version = "1"
features = ["sync"]
default-features = false

[build-dependencies.cfg_aliases]
version = "0.2"
default-features = false

[lints.clippy]
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
cfg_not_test = "warn"
clone_on_ref_ptr = "warn"
create_dir = "warn"
dbg_macro = "warn"
empty_drop = "warn"
empty_enum_variants_with_brackets = "warn"
field_scoped_visibility_modifiers = "warn"
filetype_is_file = "warn"
float_cmp_const = "warn"
fn_to_numeric_cast_any = "warn"
get_unwrap = "warn"
if_then_some_else_none = "warn"
impl_trait_in_params = "warn"
infinite_loop = "warn"
iter_over_hash_type = "warn"
large_include_file = "warn"
let_underscore_must_use = "warn"
let_underscore_untyped = "warn"
literal_string_with_formatting_args = "warn"
lossy_float_literal = "warn"
map_with_unused_argument_over_ranges = "warn"
mem_forget = "warn"
missing_asserts_for_indexing = "warn"
mixed_read_write_in_expression = "warn"
module_name_repetitions = "warn"
multiple_crate_versions = "allow"
multiple_inherent_impl = "warn"
mutex_atomic = "warn"
mutex_integer = "warn"
needless_raw_strings = "warn"
non_ascii_literal = "warn"
non_zero_suggestions = "warn"
partial_pub_fields = "warn"
pathbuf_init_then_push = "warn"
precedence_bits = "warn"
pub_without_shorthand = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_test_prefix = "warn"
redundant_type_annotations = "warn"
ref_patterns = "warn"
renamed_function_params = "warn"
rest_pat_in_fully_bound_structs = "warn"
return_and_then = "warn"
self_named_module_files = "warn"
semicolon_inside_block = "warn"
string_lit_chars_any = "warn"
suspicious_xor_used_as_pow = "warn"
try_err = "warn"
unnecessary_safety_comment = "warn"
unnecessary_safety_doc = "warn"
unnecessary_self_imports = "warn"
unneeded_field_pattern = "warn"
unused_result_ok = "warn"
unused_trait_names = "warn"
unwrap_in_result = "warn"
unwrap_used = "warn"
verbose_file_reads = "warn"

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
ambiguous_negative_literals = "warn"
explicit_outlives_requirements = "warn"
macro_use_extern_crate = "warn"
missing_abi = "warn"
non_ascii_idents = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
trivial_numeric_casts = "warn"
unit_bindings = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage,coverage_nightly,fuzzing)"]

[Verzeichnis aufwärts0.34unsichere Verbindung]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=752002