timely 0.26.1

A low-latency data-parallel dataflow system in Rust
Documentation
# 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 = "2021"
name = "timely"
version = "0.26.1"
authors = ["Frank McSherry <fmcsherry@me.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A low-latency data-parallel dataflow system in Rust"
homepage = "https://github.com/TimelyDataflow/timely-dataflow"
documentation = "https://docs.rs/timely/"
readme = "README.md"
keywords = [
    "timely",
    "dataflow",
]
license = "MIT"
repository = "https://github.com/TimelyDataflow/timely-dataflow.git"

[features]
default = ["getopts"]
getopts = [
    "dep:getopts",
    "timely_communication/getopts",
]

[lib]
name = "timely"
path = "src/lib.rs"

[[example]]
name = "barrier"
path = "examples/barrier.rs"

[[example]]
name = "bfs"
path = "examples/bfs.rs"

[[example]]
name = "capture_recv"
path = "examples/capture_recv.rs"

[[example]]
name = "capture_send"
path = "examples/capture_send.rs"

[[example]]
name = "columnar"
path = "examples/columnar.rs"

[[example]]
name = "distinct"
path = "examples/distinct.rs"

[[example]]
name = "event_driven"
path = "examples/event_driven.rs"

[[example]]
name = "exchange"
path = "examples/exchange.rs"

[[example]]
name = "flow_controlled"
path = "examples/flow_controlled.rs"

[[example]]
name = "hashjoin"
path = "examples/hashjoin.rs"

[[example]]
name = "hello"
path = "examples/hello.rs"

[[example]]
name = "logging-recv"
path = "examples/logging-recv.rs"

[[example]]
name = "logging-send"
path = "examples/logging-send.rs"

[[example]]
name = "loopdemo"
path = "examples/loopdemo.rs"

[[example]]
name = "openloop"
path = "examples/openloop.rs"

[[example]]
name = "pagerank"
path = "examples/pagerank.rs"

[[example]]
name = "pingpong"
path = "examples/pingpong.rs"

[[example]]
name = "rc"
path = "examples/rc.rs"

[[example]]
name = "sequence"
path = "examples/sequence.rs"

[[example]]
name = "simple"
path = "examples/simple.rs"

[[example]]
name = "threadless"
path = "examples/threadless.rs"

[[example]]
name = "unionfind"
path = "examples/unionfind.rs"

[[example]]
name = "unordered_input"
path = "examples/unordered_input.rs"

[[example]]
name = "wordcount"
path = "examples/wordcount.rs"

[[test]]
name = "barrier"
path = "tests/barrier.rs"

[[test]]
name = "gh_523"
path = "tests/gh_523.rs"

[[test]]
name = "shape_scaling"
path = "tests/shape_scaling.rs"

[[test]]
name = "skeptic"
path = "tests/skeptic.rs"

[dependencies.bincode]
version = "1.3"

[dependencies.byteorder]
version = "1.5"

[dependencies.columnar]
version = "0.11"

[dependencies.columnation]
version = "0.1"

[dependencies.getopts]
version = "0.2.24"
optional = true

[dependencies.itertools]
version = "0.14.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.smallvec]
version = "1.15.1"
features = [
    "serde",
    "const_generics",
]

[dependencies.timely_bytes]
version = "0.26"

[dependencies.timely_communication]
version = "0.26"
default-features = false

[dependencies.timely_container]
version = "0.26"

[dependencies.timely_logging]
version = "0.26"

[dev-dependencies.bytemuck]
version = "1.24.0"

[dev-dependencies.rand]
version = "0.8"
features = ["small_rng"]

[lints.clippy]
bool_comparison = "warn"
borrow_interior_mutable_const = "warn"
borrowed_box = "warn"
builtin_type_shadow = "warn"
clone_on_ref_ptr = "warn"
crosspointer_transmute = "warn"
dbg_macro = "warn"
deref_addrof = "warn"
disallowed_macros = "warn"
disallowed_methods = "warn"
disallowed_types = "warn"
double_must_use = "warn"
double_parens = "warn"
duplicate_underscore_argument = "warn"
excessive_precision = "warn"
extra_unused_lifetimes = "warn"
from_over_into = "warn"
match_overlapping_arm = "warn"
module_inception = "allow"
must_use_unit = "warn"
mut_mutex_lock = "warn"
needless_borrow = "warn"
needless_pass_by_ref_mut = "warn"
needless_question_mark = "warn"
needless_return = "warn"
no_effect = "warn"
option_map_unit_fn = "allow"
panicking_overflow_checks = "warn"
partialeq_ne_impl = "warn"
print_literal = "warn"
redundant_closure = "warn"
redundant_closure_call = "warn"
redundant_field_names = "warn"
redundant_pattern = "warn"
redundant_slicing = "warn"
redundant_static_lifetimes = "warn"
same_item_push = "warn"
shadow_unrelated = "warn"
should_implement_trait = "allow"
single_component_path_imports = "warn"
suspicious_assignment_formatting = "warn"
suspicious_else_formatting = "warn"
suspicious_unary_op_formatting = "warn"
todo = "warn"
transmutes_expressible_as_ptr_casts = "warn"
type_complexity = "allow"
unnecessary_cast = "warn"
unnecessary_lazy_evaluations = "warn"
unnecessary_mut_passed = "warn"
unnecessary_unwrap = "warn"
unused_async = "warn"
useless_asref = "warn"
useless_conversion = "warn"
useless_format = "warn"
wildcard_in_or_patterns = "warn"
write_literal = "warn"
wrong_self_convention = "allow"
zero_divided_by_zero = "warn"
zero_prefixed_literal = "warn"