├── .cargo └── config.toml ├── .config └── nextest.toml ├── .github ├── assets │ ├── logo-256.png │ └── logo.png └── workflows │ ├── ci.yml │ ├── release-plz.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── crates ├── rudy-dwarf │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── src │ │ ├── address │ │ │ ├── mod.rs │ │ │ └── resolution.rs │ │ ├── die │ │ │ ├── cu.rs │ │ │ ├── mod.rs │ │ │ ├── navigation.rs │ │ │ ├── unit.rs │ │ │ └── utils.rs │ │ ├── error.rs │ │ ├── expressions.rs │ │ ├── file │ │ │ ├── index.rs │ │ │ ├── loader.rs │ │ │ └── mod.rs │ │ ├── function │ │ │ ├── index.rs │ │ │ ├── mod.rs │ │ │ └── variables.rs │ │ ├── lib.rs │ │ ├── modules.rs │ │ ├── parser │ │ │ ├── btreemap.rs │ │ │ ├── children.rs │ │ │ ├── combinators.rs │ │ │ ├── enums.rs │ │ │ ├── functions.rs │ │ │ ├── hashmap.rs │ │ │ ├── mod.rs │ │ │ ├── option.rs │ │ │ ├── pointers.rs │ │ │ ├── primitives.rs │ │ │ ├── result.rs │ │ │ └── vec.rs │ │ ├── snapshots │ │ │ ├── method_discovery_dwarf_structure.snap │ │ │ ├── methods_and_functions.snap │ │ │ ├── module_index.snap │ │ │ └── visitor.snap │ │ ├── symbols │ │ │ ├── mod.rs │ │ │ └── names.rs │ │ ├── test_utils.rs │ │ ├── types │ │ │ ├── index.rs │ │ │ ├── mod.rs │ │ │ └── resolution.rs │ │ └── visitor.rs │ └── tests │ │ ├── common │ │ └── mod.rs │ │ ├── example_visitor.rs │ │ └── snapshots │ │ ├── lldb_demo@aarch64-apple-darwin.snap │ │ ├── lldb_demo@aarch64-unknown-linux-gnu.snap │ │ ├── lldb_demo@x86_64-apple-darwin.snap │ │ ├── lldb_demo@x86_64-unknown-linux-gnu.snap │ │ ├── method_discovery@aarch64-apple-darwin.snap │ │ ├── method_discovery@aarch64-unknown-linux-gnu.snap │ │ ├── method_discovery@x86_64-apple-darwin.snap │ │ ├── method_discovery@x86_64-unknown-linux-gnu.snap │ │ ├── rudy-lldb-server@aarch64-apple-darwin.snap │ │ ├── rudy-lldb-server@aarch64-unknown-linux-gnu.snap │ │ ├── rudy-lldb-server@x86_64-apple-darwin.snap │ │ ├── rudy-lldb-server@x86_64-unknown-linux-gnu.snap │ │ ├── simple_test@aarch64-apple-darwin.snap │ │ ├── simple_test@aarch64-unknown-linux-gnu.snap │ │ ├── simple_test@x86_64-apple-darwin.snap │ │ └── simple_test@x86_64-unknown-linux-gnu.snap ├── rudy-parser │ ├── CHANGELOG.md │ ├── Cargo.toml │ └── src │ │ ├── expressions.rs │ │ ├── lib.rs │ │ └── types.rs ├── rudy-test-examples │ ├── Cargo.toml │ ├── examples │ │ ├── enums.rs │ │ ├── large.rs │ │ ├── lldb_demo.rs │ │ ├── medium.rs │ │ ├── method_discovery.rs │ │ ├── simple_test.rs │ │ ├── small.rs │ │ └── std_types.rs │ └── src │ │ └── lib.rs ├── rudy-types │ ├── CHANGELOG.md │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── test-utils │ ├── Cargo.toml │ └── src │ └── lib.rs ├── release-plz.toml ├── rudy-db ├── CHANGELOG.md ├── Cargo.toml ├── benches │ └── salsa_demo.rs ├── bin │ ├── bench_comparison.rs │ └── bench_operations.rs ├── examples │ └── salsa_events_demo.rs ├── src │ ├── data.rs │ ├── database.rs │ ├── debug_info.rs │ ├── function_discovery.rs │ ├── index.rs │ ├── lib.rs │ ├── outputs.rs │ ├── query.rs │ ├── synthetic_methods.rs │ └── test_utils.rs └── tests │ ├── README.md │ ├── common │ ├── definitions.rs │ └── mod.rs │ ├── dynamic_tests.rs │ ├── snapshots │ ├── enum_type_resolution@aarch64-apple-darwin-2.snap │ ├── enum_type_resolution@aarch64-apple-darwin-3.snap │ ├── enum_type_resolution@aarch64-apple-darwin-4.snap │ ├── enum_type_resolution@aarch64-apple-darwin-5.snap │ ├── enum_type_resolution@aarch64-apple-darwin.snap │ ├── enum_type_resolution@aarch64-unknown-linux-gnu-2.snap │ ├── enum_type_resolution@aarch64-unknown-linux-gnu-3.snap │ ├── enum_type_resolution@aarch64-unknown-linux-gnu-4.snap │ ├── enum_type_resolution@aarch64-unknown-linux-gnu-5.snap │ ├── enum_type_resolution@aarch64-unknown-linux-gnu.snap │ ├── enum_type_resolution@x86_64-apple-darwin-2.snap │ ├── enum_type_resolution@x86_64-apple-darwin-3.snap │ ├── enum_type_resolution@x86_64-apple-darwin-4.snap │ ├── enum_type_resolution@x86_64-apple-darwin-5.snap │ ├── enum_type_resolution@x86_64-apple-darwin.snap │ ├── enum_type_resolution@x86_64-unknown-linux-gnu-2.snap │ ├── enum_type_resolution@x86_64-unknown-linux-gnu-3.snap │ ├── enum_type_resolution@x86_64-unknown-linux-gnu-4.snap │ ├── enum_type_resolution@x86_64-unknown-linux-gnu-5.snap │ ├── enum_type_resolution@x86_64-unknown-linux-gnu.snap │ ├── function_discovery@aarch64-apple-darwin-2.snap │ ├── function_discovery@aarch64-apple-darwin-3.snap │ ├── function_discovery@aarch64-apple-darwin.snap │ ├── function_discovery@aarch64-unknown-linux-gnu-2.snap │ ├── function_discovery@aarch64-unknown-linux-gnu-3.snap │ ├── function_discovery@aarch64-unknown-linux-gnu.snap │ ├── function_discovery@x86_64-apple-darwin-2.snap │ ├── function_discovery@x86_64-apple-darwin-3.snap │ ├── function_discovery@x86_64-apple-darwin.snap │ ├── function_discovery@x86_64-unknown-linux-gnu-2.snap │ ├── function_discovery@x86_64-unknown-linux-gnu-3.snap │ ├── function_discovery@x86_64-unknown-linux-gnu.snap │ ├── introspect_basic_struct.snap │ ├── introspect_btreemap.snap │ ├── introspect_complex_nested_types.snap │ ├── introspect_enums-10.snap │ ├── introspect_enums-2.snap │ ├── introspect_enums-3.snap │ ├── introspect_enums-4.snap │ ├── introspect_enums-5.snap │ ├── introspect_enums-6.snap │ ├── introspect_enums-7.snap │ ├── introspect_enums-8.snap │ ├── introspect_enums-9.snap │ ├── introspect_enums.snap │ ├── introspect_hashmap.snap │ ├── introspect_option-2.snap │ ├── introspect_option.snap │ ├── introspect_smart_pointers-2.snap │ ├── introspect_smart_pointers-3.snap │ ├── introspect_smart_pointers-4.snap │ ├── introspect_smart_pointers-5.snap │ ├── introspect_smart_pointers.snap │ ├── introspect_string.snap │ ├── introspect_struct.snap │ ├── introspect_vec.snap │ ├── load_file@aarch64-apple-darwin.snap │ ├── load_file@aarch64-unknown-linux-gnu.snap │ ├── load_file@x86_64-apple-darwin.snap │ ├── load_file@x86_64-unknown-linux-gnu.snap │ ├── method_discovery@aarch64-apple-darwin.snap │ ├── method_discovery@aarch64-unknown-linux-gnu.snap │ ├── method_discovery@x86_64-apple-darwin.snap │ ├── method_discovery@x86_64-unknown-linux-gnu.snap │ ├── resolve_function@aarch64-apple-darwin-2.snap │ ├── resolve_function@aarch64-apple-darwin.snap │ ├── resolve_function@aarch64-unknown-linux-gnu-2.snap │ ├── resolve_function@aarch64-unknown-linux-gnu.snap │ ├── resolve_function@x86_64-apple-darwin-2.snap │ ├── resolve_function@x86_64-apple-darwin.snap │ ├── resolve_function@x86_64-unknown-linux-gnu-2.snap │ ├── resolve_function@x86_64-unknown-linux-gnu.snap │ ├── resolve_position@aarch64-apple-darwin-2.snap │ ├── resolve_position@aarch64-apple-darwin.snap │ ├── resolve_position@aarch64-unknown-linux-gnu-2.snap │ ├── resolve_position@aarch64-unknown-linux-gnu.snap │ ├── resolve_position@x86_64-apple-darwin-2.snap │ ├── resolve_position@x86_64-apple-darwin.snap │ ├── resolve_position@x86_64-unknown-linux-gnu-2.snap │ └── resolve_position@x86_64-unknown-linux-gnu.snap │ └── static_tests.rs ├── rudy-lldb ├── CHANGELOG.md ├── Cargo.toml ├── demo.md ├── python │ └── rudy_lldb.py └── src │ ├── evaluator.rs │ ├── main.rs │ ├── protocol.rs │ └── server.rs ├── rust-toolchain.toml ├── testing └── Dockerfile └── xtask ├── Cargo.toml └── src ├── benchmarks.rs └── main.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.github/assets/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.github/assets/logo-256.png -------------------------------------------------------------------------------- /.github/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.github/assets/logo.png -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-plz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.github/workflows/release-plz.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/README.md -------------------------------------------------------------------------------- /crates/rudy-dwarf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/CHANGELOG.md -------------------------------------------------------------------------------- /crates/rudy-dwarf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/Cargo.toml -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/address/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/address/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/address/resolution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/address/resolution.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/die/cu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/die/cu.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/die/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/die/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/die/navigation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/die/navigation.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/die/unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/die/unit.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/die/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/die/utils.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/error.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/expressions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/expressions.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/file/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/file/index.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/file/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/file/loader.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/file/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/file/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/function/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/function/index.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/function/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/function/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/function/variables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/function/variables.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/lib.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/modules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/modules.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/btreemap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/btreemap.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/children.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/children.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/combinators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/combinators.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/enums.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/functions.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/hashmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/hashmap.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/option.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/pointers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/pointers.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/primitives.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/result.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/parser/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/parser/vec.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/snapshots/method_discovery_dwarf_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/snapshots/method_discovery_dwarf_structure.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/snapshots/methods_and_functions.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/snapshots/methods_and_functions.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/snapshots/module_index.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/snapshots/module_index.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/snapshots/visitor.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/snapshots/visitor.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/symbols/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/symbols/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/symbols/names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/symbols/names.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/test_utils.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/types/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/types/index.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/types/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/types/resolution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/types/resolution.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/src/visitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/src/visitor.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/common/mod.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/example_visitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/example_visitor.rs -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/lldb_demo@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/lldb_demo@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/lldb_demo@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/lldb_demo@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/lldb_demo@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/lldb_demo@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/lldb_demo@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/lldb_demo@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/method_discovery@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/method_discovery@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/method_discovery@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/method_discovery@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/method_discovery@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/method_discovery@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/method_discovery@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/method_discovery@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/rudy-lldb-server@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/simple_test@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/simple_test@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/simple_test@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/simple_test@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/simple_test@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/simple_test@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /crates/rudy-dwarf/tests/snapshots/simple_test@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-dwarf/tests/snapshots/simple_test@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /crates/rudy-parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-parser/CHANGELOG.md -------------------------------------------------------------------------------- /crates/rudy-parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-parser/Cargo.toml -------------------------------------------------------------------------------- /crates/rudy-parser/src/expressions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-parser/src/expressions.rs -------------------------------------------------------------------------------- /crates/rudy-parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-parser/src/lib.rs -------------------------------------------------------------------------------- /crates/rudy-parser/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-parser/src/types.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/Cargo.toml -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/enums.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/large.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/large.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/lldb_demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/lldb_demo.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/medium.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/medium.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/method_discovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/method_discovery.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/simple_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/simple_test.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/small.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/small.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/examples/std_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/examples/std_types.rs -------------------------------------------------------------------------------- /crates/rudy-test-examples/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-test-examples/src/lib.rs -------------------------------------------------------------------------------- /crates/rudy-types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-types/CHANGELOG.md -------------------------------------------------------------------------------- /crates/rudy-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-types/Cargo.toml -------------------------------------------------------------------------------- /crates/rudy-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/rudy-types/src/lib.rs -------------------------------------------------------------------------------- /crates/test-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/test-utils/Cargo.toml -------------------------------------------------------------------------------- /crates/test-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/crates/test-utils/src/lib.rs -------------------------------------------------------------------------------- /release-plz.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/release-plz.toml -------------------------------------------------------------------------------- /rudy-db/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/CHANGELOG.md -------------------------------------------------------------------------------- /rudy-db/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/Cargo.toml -------------------------------------------------------------------------------- /rudy-db/benches/salsa_demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/benches/salsa_demo.rs -------------------------------------------------------------------------------- /rudy-db/bin/bench_comparison.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/bin/bench_comparison.rs -------------------------------------------------------------------------------- /rudy-db/bin/bench_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/bin/bench_operations.rs -------------------------------------------------------------------------------- /rudy-db/examples/salsa_events_demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/examples/salsa_events_demo.rs -------------------------------------------------------------------------------- /rudy-db/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/data.rs -------------------------------------------------------------------------------- /rudy-db/src/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/database.rs -------------------------------------------------------------------------------- /rudy-db/src/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/debug_info.rs -------------------------------------------------------------------------------- /rudy-db/src/function_discovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/function_discovery.rs -------------------------------------------------------------------------------- /rudy-db/src/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/index.rs -------------------------------------------------------------------------------- /rudy-db/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/lib.rs -------------------------------------------------------------------------------- /rudy-db/src/outputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/outputs.rs -------------------------------------------------------------------------------- /rudy-db/src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/query.rs -------------------------------------------------------------------------------- /rudy-db/src/synthetic_methods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/synthetic_methods.rs -------------------------------------------------------------------------------- /rudy-db/src/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/src/test_utils.rs -------------------------------------------------------------------------------- /rudy-db/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/README.md -------------------------------------------------------------------------------- /rudy-db/tests/common/definitions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/common/definitions.rs -------------------------------------------------------------------------------- /rudy-db/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/common/mod.rs -------------------------------------------------------------------------------- /rudy-db/tests/dynamic_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/dynamic_tests.rs -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-4.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin-5.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-4.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu-5.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-4.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin-5.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-4.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu-5.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/enum_type_resolution@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@aarch64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@aarch64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@aarch64-apple-darwin-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@aarch64-apple-darwin-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@aarch64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@aarch64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@aarch64-unknown-linux-gnu-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@aarch64-unknown-linux-gnu-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@x86_64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@x86_64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@x86_64-apple-darwin-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@x86_64-apple-darwin-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@x86_64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@x86_64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@x86_64-unknown-linux-gnu-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@x86_64-unknown-linux-gnu-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/function_discovery@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/function_discovery@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_basic_struct.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_basic_struct.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_btreemap.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_btreemap.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_complex_nested_types.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_complex_nested_types.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-10.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-10.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-4.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-5.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-6.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-7.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-8.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums-9.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums-9.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_enums.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_enums.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_hashmap.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_hashmap.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_option-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_option-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_option.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_option.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_smart_pointers-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_smart_pointers-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_smart_pointers-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_smart_pointers-3.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_smart_pointers-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_smart_pointers-4.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_smart_pointers-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_smart_pointers-5.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_smart_pointers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_smart_pointers.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_string.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_string.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_struct.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_struct.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/introspect_vec.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/introspect_vec.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/load_file@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/load_file@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/load_file@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/load_file@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/load_file@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/load_file@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/load_file@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/load_file@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/method_discovery@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/method_discovery@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/method_discovery@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/method_discovery@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/method_discovery@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/method_discovery@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/method_discovery@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/method_discovery@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@aarch64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@aarch64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@aarch64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@aarch64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@x86_64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@x86_64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@x86_64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@x86_64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_function@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_function@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@aarch64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@aarch64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@aarch64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@aarch64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@aarch64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@aarch64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@aarch64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@aarch64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@x86_64-apple-darwin-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@x86_64-apple-darwin-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@x86_64-apple-darwin.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@x86_64-apple-darwin.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@x86_64-unknown-linux-gnu-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@x86_64-unknown-linux-gnu-2.snap -------------------------------------------------------------------------------- /rudy-db/tests/snapshots/resolve_position@x86_64-unknown-linux-gnu.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/snapshots/resolve_position@x86_64-unknown-linux-gnu.snap -------------------------------------------------------------------------------- /rudy-db/tests/static_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-db/tests/static_tests.rs -------------------------------------------------------------------------------- /rudy-lldb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/CHANGELOG.md -------------------------------------------------------------------------------- /rudy-lldb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/Cargo.toml -------------------------------------------------------------------------------- /rudy-lldb/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/demo.md -------------------------------------------------------------------------------- /rudy-lldb/python/rudy_lldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/python/rudy_lldb.py -------------------------------------------------------------------------------- /rudy-lldb/src/evaluator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/src/evaluator.rs -------------------------------------------------------------------------------- /rudy-lldb/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/src/main.rs -------------------------------------------------------------------------------- /rudy-lldb/src/protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/src/protocol.rs -------------------------------------------------------------------------------- /rudy-lldb/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rudy-lldb/src/server.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /testing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/testing/Dockerfile -------------------------------------------------------------------------------- /xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/xtask/Cargo.toml -------------------------------------------------------------------------------- /xtask/src/benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/xtask/src/benchmarks.rs -------------------------------------------------------------------------------- /xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samscott89/rudy/HEAD/xtask/src/main.rs --------------------------------------------------------------------------------