110 lines
3.4 KiB
TOML
110 lines
3.4 KiB
TOML
[package]
|
|
name = "http3server"
|
|
version = "0.1.1"
|
|
authors = ["The Mozilla Necko Team <necko@mozilla.com>"]
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
|
|
[dependencies]
|
|
neqo-bin = { tag = "v0.13.1", git = "https://github.com/mozilla/neqo" }
|
|
neqo-transport = { tag = "v0.13.1", git = "https://github.com/mozilla/neqo", features = ["gecko"] }
|
|
neqo-common = { tag = "v0.13.1", git = "https://github.com/mozilla/neqo" }
|
|
neqo-http3 = { tag = "v0.13.1", git = "https://github.com/mozilla/neqo" }
|
|
neqo-qpack = { tag = "v0.13.1", git = "https://github.com/mozilla/neqo" }
|
|
log = "0.4.0"
|
|
base64 = "0.22"
|
|
cfg-if = "1.0"
|
|
http = "0.2.8"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
mozilla-central-workspace-hack = { version = "0.1", features = ["http3server"], optional = true }
|
|
|
|
[dependencies.neqo-crypto]
|
|
tag = "v0.13.1"
|
|
git = "https://github.com/mozilla/neqo"
|
|
default-features = false
|
|
features = ["gecko"]
|
|
|
|
# Make sure to use bindgen's runtime-loading of libclang, as it allows for a wider range of clang versions to be used
|
|
[build-dependencies]
|
|
bindgen = {version = "0.69", default-features = false, features = ["runtime"] }
|
|
|
|
[[bin]]
|
|
name = "http3server"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
bench = [] # no-op, see <https://github.com/mozilla/neqo/issues/2390>
|
|
|
|
# Keep in sync with neqo
|
|
[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"
|
|
|
|
# Keep in sync with neqo
|
|
[lints.clippy]
|
|
cargo = { level = "warn", priority = -1 }
|
|
nursery = { level = "warn", priority = -1 }
|
|
pedantic = { level = "warn", priority = -1 }
|
|
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"
|
|
filetype_is_file = "warn"
|
|
float_cmp_const = "warn"
|
|
fn_to_numeric_cast_any = "warn"
|
|
get_unwrap = "warn"
|
|
if_then_some_else_none = "warn"
|
|
infinite_loop = "warn"
|
|
large_include_file = "warn"
|
|
let_underscore_must_use = "warn"
|
|
let_underscore_untyped = "warn"
|
|
literal_string_with_formatting_args = "allow" # FIXME: Re-enable "warn" when MSRV is > 1.87. See https://github.com/rust-lang/rust-clippy/pull/13953#issuecomment-2676336899
|
|
lossy_float_literal = "warn"
|
|
mem_forget = "warn"
|
|
mixed_read_write_in_expression = "warn"
|
|
multiple_crate_versions = "allow"
|
|
multiple_inherent_impl = "warn"
|
|
mutex_atomic = "warn"
|
|
mutex_integer = "warn"
|
|
needless_raw_strings = "warn"
|
|
pathbuf_init_then_push = "warn"
|
|
pub_without_shorthand = "warn"
|
|
rc_buffer = "warn"
|
|
rc_mutex = "warn"
|
|
redundant_type_annotations = "warn"
|
|
ref_patterns = "warn"
|
|
renamed_function_params = "warn"
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
self_named_module_files = "warn"
|
|
semicolon_inside_block = "warn"
|
|
string_lit_chars_any = "warn"
|
|
string_to_string = "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"
|