differential-dataflow 0.20.0

An incremental data-parallel dataflow platform
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"
rust-version = "1.86"
name = "differential-dataflow"
version = "0.20.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An incremental data-parallel dataflow platform"
homepage = "https://github.com/TimelyDataflow/differential-dataflow"
documentation = "https://docs.rs/differential-dataflow"
readme = "README.md"
keywords = [
    "differential",
    "dataflow",
]
license = "MIT"
repository = "https://github.com/TimelyDataflow/differential-dataflow.git"

[features]
default = ["timely/getopts"]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "sort-bench"
path = "benches/sort-bench.rs"

[dependencies.columnar]
version = "0.11"
default-features = false

[dependencies.columnation]
version = "0.1.1"

[dependencies.fnv]
version = "1.0.2"

[dependencies.paste]
version = "1.0"

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

[dependencies.smallvec]
version = "1.15.1"

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

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

[dev-dependencies.graph_map]
version = "0.1"

[dev-dependencies.itertools]
version = "^0.13"

[dev-dependencies.mimalloc]
version = "0.1.48"

[dev-dependencies.rand]
version = "0.4"

[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"