├── .github ├── codecov.yml ├── dependabot.yml └── workflows │ ├── book.yml │ ├── check.yml │ ├── safety.yml │ ├── scheduled.yml │ └── test.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── benches ├── Cargo.toml ├── README.md ├── assets │ ├── top_posts.svg │ └── top_posts_512_update.svg ├── data │ └── social_network_results.csv ├── social_network_top_posts.rs └── src │ └── lib.rs ├── book ├── .gitignore ├── book.toml └── src │ ├── SUMMARY.md │ ├── about.md │ ├── assets │ ├── raising_the_stakes.svg │ ├── raising_the_stakes_resolution.svg │ ├── raising_the_stakes_resolution_2.svg │ ├── simple_graphviz.svg │ ├── visualisation.dot │ └── visualisation.svg │ ├── cleaning.md │ ├── complex_input_nodes.md │ ├── dependencies.md │ ├── derived_nodes.md │ ├── getting_started.md │ ├── graphs.md │ ├── hashing.md │ ├── input_nodes.md │ ├── key_concepts.md │ ├── nodes.md │ ├── operations.md │ ├── overview.md │ ├── raising_the_stakes.md │ ├── reducing_boilerplate.md │ ├── reducing_more_boilerplate.md │ └── values.md ├── depends ├── Cargo.toml └── src │ ├── execution │ ├── clean.rs │ ├── dependency │ │ ├── dep_state.rs │ │ ├── dependency_edge.rs │ │ ├── impls.rs │ │ └── mod.rs │ ├── derived │ │ ├── derived_node.rs │ │ └── mod.rs │ ├── error.rs │ ├── graph_create.rs │ ├── hash_value.rs │ ├── identifiable.rs │ ├── input │ │ ├── input_node.rs │ │ ├── input_state.rs │ │ └── mod.rs │ ├── internal_test_utils.rs │ ├── is_dirty.rs │ ├── mod.rs │ ├── named.rs │ ├── node │ │ ├── mod.rs │ │ ├── node_hash.rs │ │ ├── node_ref.rs │ │ └── node_state.rs │ ├── primitives.rs │ ├── resolve.rs │ ├── test_utils.rs │ ├── update_derived.rs │ ├── update_input.rs │ └── visitor │ │ ├── hash_one_ext.rs │ │ ├── hashbrown.rs │ │ └── mod.rs │ ├── graphviz │ └── mod.rs │ └── lib.rs ├── depends_compile_tests ├── Cargo.lock ├── Cargo.toml └── tests │ ├── fail │ └── derive │ │ ├── graph │ │ ├── bad_attr_spec.rs │ │ ├── bad_attr_spec.stderr │ │ ├── bad_attrs.rs │ │ ├── bad_attrs.stderr │ │ ├── cycle.rs │ │ ├── cycle.stderr │ │ ├── edgeless.rs │ │ ├── edgeless.stderr │ │ ├── empty.rs │ │ ├── empty.stderr │ │ ├── multiple_edges_no_class.rs │ │ ├── multiple_edges_no_class.stderr │ │ ├── multiple_labels_classes.rs │ │ ├── multiple_labels_classes.stderr │ │ ├── multiple_roots.rs │ │ ├── multiple_roots.stderr │ │ ├── unknown_edge.rs │ │ └── unknown_edge.stderr │ │ ├── operation │ │ ├── enum.rs │ │ └── enum.stderr │ │ └── value │ │ ├── bad_attrs.rs │ │ ├── bad_attrs.stderr │ │ ├── conflicting_hash.rs │ │ ├── conflicting_hash.stderr │ │ ├── duplicate_hash.rs │ │ ├── duplicate_hash.stderr │ │ ├── enum.rs │ │ ├── enum.stderr │ │ ├── path_attrs.rs │ │ ├── path_attrs.stderr │ │ ├── union.rs │ │ └── union.stderr │ ├── pass │ └── derive │ │ ├── operation.rs │ │ └── value_with_generics.rs │ └── trybuild.rs ├── depends_core ├── Cargo.toml └── src │ ├── common.rs │ ├── dependencies.rs │ ├── graph.rs │ ├── graphviz │ ├── graph.rs │ ├── mod.rs │ ├── model.rs │ └── parser.rs │ ├── helpers.rs │ ├── lib.rs │ ├── model │ ├── attr_model.rs │ ├── depends_attr.rs │ ├── hash_logic.rs │ └── mod.rs │ ├── operation.rs │ ├── snapshots │ ├── depends_core__dependencies__tests__dependencies.snap │ ├── depends_core__graph__tests__graph.snap │ ├── depends_core__macros__dependencies__tests__dependencies.snap │ ├── depends_core__macros__graph__tests__graph.snap │ ├── depends_core__macros__operation__tests__operation.snap │ ├── depends_core__macros__operation__tests__operation_fields.snap │ ├── depends_core__macros__operation__tests__operation_semi_colon.snap │ ├── depends_core__macros__operation__tests__operation_tuple.snap │ ├── depends_core__operation__tests__operation.snap │ ├── depends_core__operation__tests__operation_fields.snap │ ├── depends_core__operation__tests__operation_semi_colon.snap │ └── depends_core__operation__tests__operation_tuple.snap │ └── value │ ├── derive.rs │ ├── field_attrs.rs │ ├── mod.rs │ ├── parsed_attrs.rs │ ├── snapshots │ ├── depends_core__macros__value__derive__tests__value.snap │ ├── depends_core__macros__value__derive__tests__value_generics.snap │ ├── depends_core__macros__value__derive__tests__value_generics_custom_clean.snap │ ├── depends_core__macros__value__derive__tests__value_hashed_attr.snap │ ├── depends_core__macros__value__derive__tests__value_unhashable.snap │ ├── depends_core__value__derive__tests__value.snap │ ├── depends_core__value__derive__tests__value_generics_custom_clean.snap │ ├── depends_core__value__derive__tests__value_hashed_attr.snap │ └── depends_core__value__derive__tests__value_unhashable.snap │ └── struct_attrs.rs ├── depends_derives ├── Cargo.toml └── src │ └── lib.rs ├── depends_tests ├── Cargo.toml └── tests │ ├── graphviz.rs │ └── graphviz_from_spec.rs ├── examples ├── Cargo.toml ├── README.md ├── examples │ ├── custom_clean.rs │ ├── early_exit.rs │ ├── graph.rs │ └── maths.rs ├── src │ ├── comments.rs │ ├── comments_to_posts.rs │ ├── docs │ │ ├── checking_node_state_directly.rs │ │ ├── complex_value.rs │ │ ├── early_exit.rs │ │ ├── getting_started_value.rs │ │ ├── hashing.rs │ │ ├── mod.rs │ │ ├── multiple_dependencies.rs │ │ ├── raising_the_stakes.rs │ │ ├── reducing_more_boilerplate.rs │ │ ├── simple_graph.rs │ │ └── simple_value.rs │ ├── friends.rs │ ├── lib.rs │ ├── likes.rs │ ├── maths │ │ └── mod.rs │ ├── models.rs │ ├── post_scores_query.rs │ ├── posts.rs │ └── users.rs └── viz │ ├── custom_clean.svg │ ├── early_exit.svg │ └── maths.svg ├── product.svg └── rustfmt.toml /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/.github/workflows/book.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/safety.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/.github/workflows/safety.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/.github/workflows/scheduled.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/benches/Cargo.toml -------------------------------------------------------------------------------- /benches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/benches/README.md -------------------------------------------------------------------------------- /benches/assets/top_posts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/benches/assets/top_posts.svg -------------------------------------------------------------------------------- /benches/assets/top_posts_512_update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/benches/assets/top_posts_512_update.svg -------------------------------------------------------------------------------- /benches/data/social_network_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/benches/data/social_network_results.csv -------------------------------------------------------------------------------- /benches/social_network_top_posts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/benches/social_network_top_posts.rs -------------------------------------------------------------------------------- /benches/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/benches/src/lib.rs -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/about.md -------------------------------------------------------------------------------- /book/src/assets/raising_the_stakes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/assets/raising_the_stakes.svg -------------------------------------------------------------------------------- /book/src/assets/raising_the_stakes_resolution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/assets/raising_the_stakes_resolution.svg -------------------------------------------------------------------------------- /book/src/assets/raising_the_stakes_resolution_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/assets/raising_the_stakes_resolution_2.svg -------------------------------------------------------------------------------- /book/src/assets/simple_graphviz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/assets/simple_graphviz.svg -------------------------------------------------------------------------------- /book/src/assets/visualisation.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/assets/visualisation.dot -------------------------------------------------------------------------------- /book/src/assets/visualisation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/assets/visualisation.svg -------------------------------------------------------------------------------- /book/src/cleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/cleaning.md -------------------------------------------------------------------------------- /book/src/complex_input_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/complex_input_nodes.md -------------------------------------------------------------------------------- /book/src/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/dependencies.md -------------------------------------------------------------------------------- /book/src/derived_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/derived_nodes.md -------------------------------------------------------------------------------- /book/src/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/getting_started.md -------------------------------------------------------------------------------- /book/src/graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/graphs.md -------------------------------------------------------------------------------- /book/src/hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/hashing.md -------------------------------------------------------------------------------- /book/src/input_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/input_nodes.md -------------------------------------------------------------------------------- /book/src/key_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/key_concepts.md -------------------------------------------------------------------------------- /book/src/nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/nodes.md -------------------------------------------------------------------------------- /book/src/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/operations.md -------------------------------------------------------------------------------- /book/src/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/overview.md -------------------------------------------------------------------------------- /book/src/raising_the_stakes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/raising_the_stakes.md -------------------------------------------------------------------------------- /book/src/reducing_boilerplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/reducing_boilerplate.md -------------------------------------------------------------------------------- /book/src/reducing_more_boilerplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/reducing_more_boilerplate.md -------------------------------------------------------------------------------- /book/src/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/book/src/values.md -------------------------------------------------------------------------------- /depends/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/Cargo.toml -------------------------------------------------------------------------------- /depends/src/execution/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/clean.rs -------------------------------------------------------------------------------- /depends/src/execution/dependency/dep_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/dependency/dep_state.rs -------------------------------------------------------------------------------- /depends/src/execution/dependency/dependency_edge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/dependency/dependency_edge.rs -------------------------------------------------------------------------------- /depends/src/execution/dependency/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/dependency/impls.rs -------------------------------------------------------------------------------- /depends/src/execution/dependency/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/dependency/mod.rs -------------------------------------------------------------------------------- /depends/src/execution/derived/derived_node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/derived/derived_node.rs -------------------------------------------------------------------------------- /depends/src/execution/derived/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/derived/mod.rs -------------------------------------------------------------------------------- /depends/src/execution/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/error.rs -------------------------------------------------------------------------------- /depends/src/execution/graph_create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/graph_create.rs -------------------------------------------------------------------------------- /depends/src/execution/hash_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/hash_value.rs -------------------------------------------------------------------------------- /depends/src/execution/identifiable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/identifiable.rs -------------------------------------------------------------------------------- /depends/src/execution/input/input_node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/input/input_node.rs -------------------------------------------------------------------------------- /depends/src/execution/input/input_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/input/input_state.rs -------------------------------------------------------------------------------- /depends/src/execution/input/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/input/mod.rs -------------------------------------------------------------------------------- /depends/src/execution/internal_test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/internal_test_utils.rs -------------------------------------------------------------------------------- /depends/src/execution/is_dirty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/is_dirty.rs -------------------------------------------------------------------------------- /depends/src/execution/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/mod.rs -------------------------------------------------------------------------------- /depends/src/execution/named.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/named.rs -------------------------------------------------------------------------------- /depends/src/execution/node/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/node/mod.rs -------------------------------------------------------------------------------- /depends/src/execution/node/node_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/node/node_hash.rs -------------------------------------------------------------------------------- /depends/src/execution/node/node_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/node/node_ref.rs -------------------------------------------------------------------------------- /depends/src/execution/node/node_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/node/node_state.rs -------------------------------------------------------------------------------- /depends/src/execution/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/primitives.rs -------------------------------------------------------------------------------- /depends/src/execution/resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/resolve.rs -------------------------------------------------------------------------------- /depends/src/execution/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/test_utils.rs -------------------------------------------------------------------------------- /depends/src/execution/update_derived.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/update_derived.rs -------------------------------------------------------------------------------- /depends/src/execution/update_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/update_input.rs -------------------------------------------------------------------------------- /depends/src/execution/visitor/hash_one_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/visitor/hash_one_ext.rs -------------------------------------------------------------------------------- /depends/src/execution/visitor/hashbrown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/visitor/hashbrown.rs -------------------------------------------------------------------------------- /depends/src/execution/visitor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/execution/visitor/mod.rs -------------------------------------------------------------------------------- /depends/src/graphviz/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/graphviz/mod.rs -------------------------------------------------------------------------------- /depends/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends/src/lib.rs -------------------------------------------------------------------------------- /depends_compile_tests/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/Cargo.lock -------------------------------------------------------------------------------- /depends_compile_tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/Cargo.toml -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/bad_attr_spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/bad_attr_spec.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/bad_attr_spec.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/bad_attr_spec.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/bad_attrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/bad_attrs.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/bad_attrs.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/bad_attrs.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/cycle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/cycle.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/cycle.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/cycle.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/edgeless.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/edgeless.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/edgeless.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/edgeless.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/empty.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/empty.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/empty.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/multiple_edges_no_class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/multiple_edges_no_class.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/multiple_edges_no_class.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/multiple_edges_no_class.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/multiple_labels_classes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/multiple_labels_classes.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/multiple_labels_classes.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/multiple_labels_classes.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/multiple_roots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/multiple_roots.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/multiple_roots.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/multiple_roots.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/unknown_edge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/unknown_edge.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/graph/unknown_edge.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/graph/unknown_edge.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/operation/enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/operation/enum.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/operation/enum.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/operation/enum.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/bad_attrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/bad_attrs.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/bad_attrs.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/bad_attrs.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/conflicting_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/conflicting_hash.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/conflicting_hash.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/conflicting_hash.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/duplicate_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/duplicate_hash.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/duplicate_hash.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/duplicate_hash.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/enum.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/enum.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/enum.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/path_attrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/path_attrs.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/path_attrs.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/path_attrs.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/union.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/union.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/fail/derive/value/union.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/fail/derive/value/union.stderr -------------------------------------------------------------------------------- /depends_compile_tests/tests/pass/derive/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/pass/derive/operation.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/pass/derive/value_with_generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/pass/derive/value_with_generics.rs -------------------------------------------------------------------------------- /depends_compile_tests/tests/trybuild.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_compile_tests/tests/trybuild.rs -------------------------------------------------------------------------------- /depends_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/Cargo.toml -------------------------------------------------------------------------------- /depends_core/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/common.rs -------------------------------------------------------------------------------- /depends_core/src/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/dependencies.rs -------------------------------------------------------------------------------- /depends_core/src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/graph.rs -------------------------------------------------------------------------------- /depends_core/src/graphviz/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/graphviz/graph.rs -------------------------------------------------------------------------------- /depends_core/src/graphviz/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/graphviz/mod.rs -------------------------------------------------------------------------------- /depends_core/src/graphviz/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/graphviz/model.rs -------------------------------------------------------------------------------- /depends_core/src/graphviz/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/graphviz/parser.rs -------------------------------------------------------------------------------- /depends_core/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/helpers.rs -------------------------------------------------------------------------------- /depends_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/lib.rs -------------------------------------------------------------------------------- /depends_core/src/model/attr_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/model/attr_model.rs -------------------------------------------------------------------------------- /depends_core/src/model/depends_attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/model/depends_attr.rs -------------------------------------------------------------------------------- /depends_core/src/model/hash_logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/model/hash_logic.rs -------------------------------------------------------------------------------- /depends_core/src/model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/model/mod.rs -------------------------------------------------------------------------------- /depends_core/src/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/operation.rs -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__dependencies__tests__dependencies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__dependencies__tests__dependencies.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__graph__tests__graph.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__graph__tests__graph.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__macros__dependencies__tests__dependencies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__macros__dependencies__tests__dependencies.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__macros__graph__tests__graph.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__macros__graph__tests__graph.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__macros__operation__tests__operation.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__macros__operation__tests__operation.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__macros__operation__tests__operation_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__macros__operation__tests__operation_fields.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__macros__operation__tests__operation_semi_colon.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__macros__operation__tests__operation_semi_colon.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__macros__operation__tests__operation_tuple.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__macros__operation__tests__operation_tuple.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__operation__tests__operation.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__operation__tests__operation.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__operation__tests__operation_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__operation__tests__operation_fields.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__operation__tests__operation_semi_colon.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__operation__tests__operation_semi_colon.snap -------------------------------------------------------------------------------- /depends_core/src/snapshots/depends_core__operation__tests__operation_tuple.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/snapshots/depends_core__operation__tests__operation_tuple.snap -------------------------------------------------------------------------------- /depends_core/src/value/derive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/derive.rs -------------------------------------------------------------------------------- /depends_core/src/value/field_attrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/field_attrs.rs -------------------------------------------------------------------------------- /depends_core/src/value/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/mod.rs -------------------------------------------------------------------------------- /depends_core/src/value/parsed_attrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/parsed_attrs.rs -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_generics.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_generics.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_generics_custom_clean.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_generics_custom_clean.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_hashed_attr.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_hashed_attr.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_unhashable.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__macros__value__derive__tests__value_unhashable.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__value__derive__tests__value.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__value__derive__tests__value.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__value__derive__tests__value_generics_custom_clean.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__value__derive__tests__value_generics_custom_clean.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__value__derive__tests__value_hashed_attr.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__value__derive__tests__value_hashed_attr.snap -------------------------------------------------------------------------------- /depends_core/src/value/snapshots/depends_core__value__derive__tests__value_unhashable.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/snapshots/depends_core__value__derive__tests__value_unhashable.snap -------------------------------------------------------------------------------- /depends_core/src/value/struct_attrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_core/src/value/struct_attrs.rs -------------------------------------------------------------------------------- /depends_derives/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_derives/Cargo.toml -------------------------------------------------------------------------------- /depends_derives/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_derives/src/lib.rs -------------------------------------------------------------------------------- /depends_tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_tests/Cargo.toml -------------------------------------------------------------------------------- /depends_tests/tests/graphviz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_tests/tests/graphviz.rs -------------------------------------------------------------------------------- /depends_tests/tests/graphviz_from_spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/depends_tests/tests/graphviz_from_spec.rs -------------------------------------------------------------------------------- /examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/Cargo.toml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/examples/custom_clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/examples/custom_clean.rs -------------------------------------------------------------------------------- /examples/examples/early_exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/examples/early_exit.rs -------------------------------------------------------------------------------- /examples/examples/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/examples/graph.rs -------------------------------------------------------------------------------- /examples/examples/maths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/examples/maths.rs -------------------------------------------------------------------------------- /examples/src/comments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/comments.rs -------------------------------------------------------------------------------- /examples/src/comments_to_posts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/comments_to_posts.rs -------------------------------------------------------------------------------- /examples/src/docs/checking_node_state_directly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/checking_node_state_directly.rs -------------------------------------------------------------------------------- /examples/src/docs/complex_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/complex_value.rs -------------------------------------------------------------------------------- /examples/src/docs/early_exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/early_exit.rs -------------------------------------------------------------------------------- /examples/src/docs/getting_started_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/getting_started_value.rs -------------------------------------------------------------------------------- /examples/src/docs/hashing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/hashing.rs -------------------------------------------------------------------------------- /examples/src/docs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/mod.rs -------------------------------------------------------------------------------- /examples/src/docs/multiple_dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/multiple_dependencies.rs -------------------------------------------------------------------------------- /examples/src/docs/raising_the_stakes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/raising_the_stakes.rs -------------------------------------------------------------------------------- /examples/src/docs/reducing_more_boilerplate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/reducing_more_boilerplate.rs -------------------------------------------------------------------------------- /examples/src/docs/simple_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/simple_graph.rs -------------------------------------------------------------------------------- /examples/src/docs/simple_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/docs/simple_value.rs -------------------------------------------------------------------------------- /examples/src/friends.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/friends.rs -------------------------------------------------------------------------------- /examples/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/lib.rs -------------------------------------------------------------------------------- /examples/src/likes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/likes.rs -------------------------------------------------------------------------------- /examples/src/maths/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/maths/mod.rs -------------------------------------------------------------------------------- /examples/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/models.rs -------------------------------------------------------------------------------- /examples/src/post_scores_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/post_scores_query.rs -------------------------------------------------------------------------------- /examples/src/posts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/posts.rs -------------------------------------------------------------------------------- /examples/src/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/src/users.rs -------------------------------------------------------------------------------- /examples/viz/custom_clean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/viz/custom_clean.svg -------------------------------------------------------------------------------- /examples/viz/early_exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/viz/early_exit.svg -------------------------------------------------------------------------------- /examples/viz/maths.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/examples/viz/maths.svg -------------------------------------------------------------------------------- /product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/product.svg -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justice4Joffrey/depends-rs/HEAD/rustfmt.toml --------------------------------------------------------------------------------