├── packages
├── axum
│ └── axum-v0.4.5
│ │ ├── .clippy.toml
│ │ ├── axum-debug
│ │ └── tests
│ │ │ ├── fail
│ │ │ ├── .gitkeep
│ │ │ ├── not_a_function.rs
│ │ │ ├── not_async.rs
│ │ │ ├── generics.rs
│ │ │ ├── invalid_attrs.rs
│ │ │ ├── not_a_function.stderr
│ │ │ ├── not_async.stderr
│ │ │ ├── argument_not_extractor.rs
│ │ │ ├── invalid_attrs.stderr
│ │ │ ├── wrong_return_type.rs
│ │ │ ├── not_send.rs
│ │ │ ├── extract_self_ref.stderr
│ │ │ ├── extract_self_mut.stderr
│ │ │ ├── argument_not_extractor.stderr
│ │ │ ├── too_many_extractors.stderr
│ │ │ └── generics.stderr
│ │ │ └── pass
│ │ │ ├── multiple_extractors.rs
│ │ │ ├── associated_fn_without_self.rs
│ │ │ ├── ready.rs
│ │ │ ├── mut_extractor.rs
│ │ │ ├── impl_future.rs
│ │ │ ├── impl_into_response.rs
│ │ │ ├── different_request_body_type.rs
│ │ │ └── returns_self.rs
│ │ ├── .gitignore
│ │ ├── examples
│ │ ├── sse
│ │ │ ├── assets
│ │ │ │ ├── index.html
│ │ │ │ └── script.js
│ │ │ └── Cargo.toml
│ │ ├── templates
│ │ │ ├── templates
│ │ │ │ └── hello.html
│ │ │ └── Cargo.toml
│ │ ├── websockets
│ │ │ ├── assets
│ │ │ │ ├── index.html
│ │ │ │ └── script.js
│ │ │ └── Cargo.toml
│ │ ├── hello-world
│ │ │ └── Cargo.toml
│ │ ├── graceful-shutdown
│ │ │ └── Cargo.toml
│ │ ├── README.md
│ │ ├── cors
│ │ │ └── Cargo.toml
│ │ ├── routes-and-handlers-close-together
│ │ │ └── Cargo.toml
│ │ ├── versioning
│ │ │ └── Cargo.toml
│ │ ├── reverse-proxy
│ │ │ └── Cargo.toml
│ │ ├── form
│ │ │ └── Cargo.toml
│ │ ├── async-graphql
│ │ │ └── Cargo.toml
│ │ ├── tls-rustls
│ │ │ └── Cargo.toml
│ │ ├── global-404-handler
│ │ │ └── Cargo.toml
│ │ ├── readme
│ │ │ └── Cargo.toml
│ │ ├── chat
│ │ │ └── Cargo.toml
│ │ ├── query-params-with-empty-strings
│ │ │ └── Cargo.toml
│ │ ├── static-file-server
│ │ │ └── Cargo.toml
│ │ ├── tracing-aka-logging
│ │ │ └── Cargo.toml
│ │ ├── tokio-postgres
│ │ │ └── Cargo.toml
│ │ ├── multipart-form
│ │ │ └── Cargo.toml
│ │ ├── customize-path-rejection
│ │ │ └── Cargo.toml
│ │ ├── http-proxy
│ │ │ └── Cargo.toml
│ │ ├── customize-extractor-error
│ │ │ └── Cargo.toml
│ │ ├── prometheus-metrics
│ │ │ └── Cargo.toml
│ │ ├── unix-domain-socket
│ │ │ └── Cargo.toml
│ │ └── jwt
│ │ │ └── Cargo.toml
│ │ ├── Cargo.toml
│ │ ├── axum-extra
│ │ └── src
│ │ │ ├── middleware
│ │ │ └── mod.rs
│ │ │ ├── response
│ │ │ └── mod.rs
│ │ │ └── extract
│ │ │ └── mod.rs
│ │ ├── .github
│ │ └── workflows
│ │ │ └── patch.toml
│ │ └── axum
│ │ └── src
│ │ ├── docs
│ │ └── handlers_intro.md
│ │ ├── handler
│ │ └── future.rs
│ │ └── body
│ │ └── mod.rs
├── tokio
│ └── tokio-1.14.1
│ │ ├── .clippy.toml
│ │ ├── .gitignore
│ │ ├── tokio-util
│ │ ├── src
│ │ │ ├── sync
│ │ │ │ ├── tests
│ │ │ │ │ └── mod.rs
│ │ │ │ └── mod.rs
│ │ │ ├── loom.rs
│ │ │ └── udp
│ │ │ │ └── mod.rs
│ │ ├── tests
│ │ │ └── _require_full.rs
│ │ └── README.md
│ │ ├── tests-build
│ │ ├── src
│ │ │ └── lib.rs
│ │ ├── tests
│ │ │ ├── fail
│ │ │ │ ├── macros_core_no_default.rs
│ │ │ │ ├── macros_dead_code.rs
│ │ │ │ ├── macros_dead_code.stderr
│ │ │ │ └── macros_core_no_default.stderr
│ │ │ ├── pass
│ │ │ │ ├── macros_main_return.rs
│ │ │ │ ├── macros_main_loop.rs
│ │ │ │ └── forward_args_and_output.rs
│ │ │ └── macros_clippy.rs
│ │ ├── README.md
│ │ └── Cargo.toml
│ │ ├── tokio
│ │ ├── src
│ │ │ ├── net
│ │ │ │ ├── unix
│ │ │ │ │ └── datagram
│ │ │ │ │ │ └── mod.rs
│ │ │ │ ├── windows
│ │ │ │ │ └── mod.rs
│ │ │ │ └── tcp
│ │ │ │ │ └── mod.rs
│ │ │ ├── sync
│ │ │ │ ├── task
│ │ │ │ │ └── mod.rs
│ │ │ │ └── tests
│ │ │ │ │ └── mod.rs
│ │ │ ├── macros
│ │ │ │ ├── thread_local.rs
│ │ │ │ ├── ready.rs
│ │ │ │ ├── support.rs
│ │ │ │ └── loom.rs
│ │ │ ├── future
│ │ │ │ ├── trace.rs
│ │ │ │ └── block_on.rs
│ │ │ ├── process
│ │ │ │ └── kill.rs
│ │ │ ├── signal
│ │ │ │ └── windows
│ │ │ │ │ └── stub.rs
│ │ │ ├── loom
│ │ │ │ └── mod.rs
│ │ │ └── fs
│ │ │ │ ├── remove_dir.rs
│ │ │ │ └── read_link.rs
│ │ └── tests
│ │ │ ├── _require_full.rs
│ │ │ ├── support
│ │ │ └── signal.rs
│ │ │ ├── io_async_read.rs
│ │ │ ├── macros_pin.rs
│ │ │ ├── signal_no_rt.rs
│ │ │ ├── process_arg0.rs
│ │ │ ├── net_bind_resource.rs
│ │ │ ├── io_read_exact.rs
│ │ │ └── io_chain.rs
│ │ ├── .github
│ │ ├── FUNDING.yml
│ │ ├── labeler.yml
│ │ ├── workflows
│ │ │ └── labeler.yml
│ │ └── ISSUE_TEMPLATE
│ │ │ └── question.md
│ │ ├── tests-integration
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── lib.rs
│ │ │ └── bin
│ │ │ │ └── test-process-signal.rs
│ │ └── tests
│ │ │ └── macros_pin.rs
│ │ ├── .cargo
│ │ └── audit.toml
│ │ ├── Cargo.toml
│ │ ├── tokio-stream
│ │ └── tests
│ │ │ ├── stream_empty.rs
│ │ │ ├── stream_once.rs
│ │ │ ├── stream_iter.rs
│ │ │ ├── stream_pending.rs
│ │ │ └── support
│ │ │ └── mpsc.rs
│ │ ├── CODE_OF_CONDUCT.md
│ │ ├── tokio-macros
│ │ └── README.md
│ │ ├── tokio-test
│ │ └── README.md
│ │ └── stress-test
│ │ └── Cargo.toml
├── rocket
│ └── rocket-0.5.0-rc.2
│ │ ├── .gitattributes
│ │ ├── examples
│ │ ├── todo
│ │ │ ├── db
│ │ │ │ └── DB_LIVES_HERE
│ │ │ ├── migrations
│ │ │ │ ├── .gitkeep
│ │ │ │ └── 20160720150332_create_tasks_table
│ │ │ │ │ ├── down.sql
│ │ │ │ │ └── up.sql
│ │ │ ├── Rocket.toml
│ │ │ ├── static
│ │ │ │ └── images
│ │ │ │ │ └── favicon.png
│ │ │ └── README.md
│ │ ├── databases
│ │ │ ├── db
│ │ │ │ ├── diesel
│ │ │ │ │ └── migrations
│ │ │ │ │ │ ├── .gitkeep
│ │ │ │ │ │ └── 20210329150332_create_posts_table
│ │ │ │ │ │ ├── down.sql
│ │ │ │ │ │ └── up.sql
│ │ │ │ └── sqlx
│ │ │ │ │ └── migrations
│ │ │ │ │ └── 20210331024424_create-posts-table.sql
│ │ │ ├── Rocket.toml
│ │ │ └── README.md
│ │ ├── fairings
│ │ │ ├── Rocket.toml
│ │ │ └── Cargo.toml
│ │ ├── manual-routing
│ │ │ ├── Rocket.toml
│ │ │ └── Cargo.toml
│ │ ├── static-files
│ │ │ ├── static
│ │ │ │ ├── hidden
│ │ │ │ │ ├── hi.txt
│ │ │ │ │ └── index.html
│ │ │ │ ├── rocket-icon.jpg
│ │ │ │ └── index.html
│ │ │ └── Cargo.toml
│ │ ├── templating
│ │ │ ├── Rocket.toml
│ │ │ ├── templates
│ │ │ │ ├── hbs
│ │ │ │ │ ├── footer.html.hbs
│ │ │ │ │ ├── nav.html.hbs
│ │ │ │ │ ├── layout.html.hbs
│ │ │ │ │ └── error
│ │ │ │ │ │ └── 404.html.hbs
│ │ │ │ └── tera
│ │ │ │ │ ├── nav.html.tera
│ │ │ │ │ ├── error
│ │ │ │ │ └── 404.html.tera
│ │ │ │ │ ├── base.html.tera
│ │ │ │ │ └── index.html.tera
│ │ │ └── Cargo.toml
│ │ ├── forms
│ │ │ ├── Rocket.toml
│ │ │ └── Cargo.toml
│ │ ├── cookies
│ │ │ ├── Rocket.toml
│ │ │ └── Cargo.toml
│ │ ├── tls
│ │ │ ├── private
│ │ │ │ ├── ed25519.p12
│ │ │ │ ├── rsa_sha256.p12
│ │ │ │ ├── ed25519_key.pem
│ │ │ │ ├── ecdsa_nistp256_sha256.p12
│ │ │ │ ├── ecdsa_nistp384_sha384.p12
│ │ │ │ ├── ecdsa_nistp256_sha256_key_pkcs8.pem
│ │ │ │ └── ecdsa_nistp384_sha384_key_pkcs8.pem
│ │ │ ├── Cargo.toml
│ │ │ └── src
│ │ │ │ └── tests.rs
│ │ ├── hello
│ │ │ └── Cargo.toml
│ │ ├── testing
│ │ │ └── Cargo.toml
│ │ ├── error-handling
│ │ │ └── Cargo.toml
│ │ ├── state
│ │ │ ├── Cargo.toml
│ │ │ └── src
│ │ │ │ └── main.rs
│ │ ├── config
│ │ │ └── Cargo.toml
│ │ ├── pastebin
│ │ │ └── Cargo.toml
│ │ ├── responders
│ │ │ └── Cargo.toml
│ │ ├── serialization
│ │ │ ├── Cargo.toml
│ │ │ └── src
│ │ │ │ └── main.rs
│ │ ├── chat
│ │ │ ├── Cargo.toml
│ │ │ └── static
│ │ │ │ └── reset.css
│ │ └── Cargo.toml
│ │ ├── core
│ │ ├── lib
│ │ │ ├── tests
│ │ │ │ ├── static
│ │ │ │ │ ├── .hidden
│ │ │ │ │ ├── inner
│ │ │ │ │ │ ├── .hideme
│ │ │ │ │ │ ├── goodbye
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── other
│ │ │ │ │ │ └── hello.txt
│ │ │ │ │ └── index.html
│ │ │ │ ├── twice_managed_state.rs
│ │ │ │ ├── mount_point.rs
│ │ │ │ ├── local-client-access-runtime-in-drop.rs
│ │ │ │ └── typed-uri-docs-redef-issue-1373.rs
│ │ │ ├── fuzz
│ │ │ │ ├── corpus
│ │ │ │ │ └── uri-parsing
│ │ │ │ │ │ ├── asterisk.seed
│ │ │ │ │ │ ├── authority.seed
│ │ │ │ │ │ ├── origin.seed
│ │ │ │ │ │ ├── absolute.seed
│ │ │ │ │ │ └── reference.seed
│ │ │ │ ├── .gitignore
│ │ │ │ └── README.md
│ │ │ ├── src
│ │ │ │ ├── router
│ │ │ │ │ └── mod.rs
│ │ │ │ ├── catcher
│ │ │ │ │ └── mod.rs
│ │ │ │ ├── form
│ │ │ │ │ └── name
│ │ │ │ │ │ └── mod.rs
│ │ │ │ ├── route
│ │ │ │ │ └── mod.rs
│ │ │ │ └── fs
│ │ │ │ │ └── mod.rs
│ │ │ └── build.rs
│ │ ├── codegen
│ │ │ ├── src
│ │ │ │ ├── attribute
│ │ │ │ │ └── mod.rs
│ │ │ │ └── derive
│ │ │ │ │ └── mod.rs
│ │ │ └── tests
│ │ │ │ ├── ui-fail
│ │ │ │ ├── routes.rs
│ │ │ │ ├── catchers.rs
│ │ │ │ ├── bad-ignored-segments.rs
│ │ │ │ ├── from_form_type_errors.rs
│ │ │ │ └── catch_type_errors.rs
│ │ │ │ ├── ui-fail-nightly
│ │ │ │ ├── routes.rs
│ │ │ │ ├── catchers.rs
│ │ │ │ ├── bad-ignored-segments.rs
│ │ │ │ ├── from_form_type_errors.rs
│ │ │ │ └── catch_type_errors.rs
│ │ │ │ ├── ui-fail-stable
│ │ │ │ ├── routes.rs
│ │ │ │ ├── catchers.rs
│ │ │ │ ├── route-warnings.stderr
│ │ │ │ ├── bad-ignored-segments.rs
│ │ │ │ ├── from_form_type_errors.rs
│ │ │ │ └── catch_type_errors.rs
│ │ │ │ └── ui-fail.rs
│ │ └── http
│ │ │ └── src
│ │ │ ├── tls
│ │ │ └── mod.rs
│ │ │ ├── parse
│ │ │ ├── mod.rs
│ │ │ └── checkers.rs
│ │ │ ├── uri
│ │ │ └── fmt
│ │ │ │ └── mod.rs
│ │ │ └── header
│ │ │ └── mod.rs
│ │ ├── contrib
│ │ ├── dyn_templates
│ │ │ └── tests
│ │ │ │ └── templates
│ │ │ │ ├── hbs
│ │ │ │ ├── reload.txt.hbs
│ │ │ │ ├── common
│ │ │ │ │ ├── footer.html.hbs
│ │ │ │ │ └── header.html.hbs
│ │ │ │ └── test.html.hbs
│ │ │ │ └── tera
│ │ │ │ ├── html_test.html.tera
│ │ │ │ ├── txt_test.txt.tera
│ │ │ │ └── base.txt.tera
│ │ ├── sync_db_pools
│ │ │ └── codegen
│ │ │ │ └── tests
│ │ │ │ ├── ui-fail
│ │ │ │ └── database-types.rs
│ │ │ │ ├── ui-fail-stable
│ │ │ │ └── database-types.rs
│ │ │ │ ├── ui-fail-nightly
│ │ │ │ └── database-types.rs
│ │ │ │ └── ui-fail.rs
│ │ └── db_pools
│ │ │ └── codegen
│ │ │ └── tests
│ │ │ ├── ui-fail
│ │ │ └── database-types.rs
│ │ │ ├── ui-fail-stable
│ │ │ └── database-types.rs
│ │ │ ├── ui-fail-nightly
│ │ │ └── database-types.rs
│ │ │ └── ui-fail.rs
│ │ ├── benchmarks
│ │ ├── src
│ │ │ └── bench.rs
│ │ └── Cargo.toml
│ │ ├── .github
│ │ └── ISSUE_TEMPLATE
│ │ │ └── config.yml
│ │ └── Cargo.toml
└── substrate
│ └── substrate-monthly-2022-02
│ ├── .gitattributes
│ ├── frame
│ ├── gilt
│ │ └── README.md
│ ├── system
│ │ ├── benchmarking
│ │ │ └── README.md
│ │ └── rpc
│ │ │ └── runtime-api
│ │ │ └── README.md
│ ├── bags-list
│ │ └── fuzzer
│ │ │ └── .gitignore
│ ├── support
│ │ ├── README.md
│ │ └── test
│ │ │ └── tests
│ │ │ ├── pallet_ui
│ │ │ ├── mod_not_inlined.rs
│ │ │ ├── attr_non_empty.rs
│ │ │ ├── event_wrong_item_name.stderr
│ │ │ ├── error_wrong_item.stderr
│ │ │ ├── error_wrong_item_name.stderr
│ │ │ ├── event_wrong_item.stderr
│ │ │ ├── storage_wrong_item.stderr
│ │ │ ├── duplicate_call_attr.stderr
│ │ │ ├── call_no_origin.stderr
│ │ │ ├── call_invalid_const.stderr
│ │ │ ├── error_no_fieldless.stderr
│ │ │ ├── trait_invalid_item.stderr
│ │ │ ├── inherent_invalid_item.stderr
│ │ │ ├── duplicate_store_attr.stderr
│ │ │ ├── genesis_wrong_name.stderr
│ │ │ ├── trait_constant_invalid_bound.stderr
│ │ │ ├── call_no_return.stderr
│ │ │ ├── storage_multiple_getters.stderr
│ │ │ ├── type_value_no_return.stderr
│ │ │ ├── storage_invalid_rename_value.stderr
│ │ │ ├── storage_multiple_renames.stderr
│ │ │ ├── type_value_invalid_item.stderr
│ │ │ ├── call_invalid_vis.stderr
│ │ │ ├── error_where_clause.stderr
│ │ │ ├── storage_invalid_attribute.stderr
│ │ │ ├── trait_constant_invalid_bound_lifetime.stderr
│ │ │ ├── call_invalid_vis_2.stderr
│ │ │ ├── event_type_invalid_bound.stderr
│ │ │ ├── attr_non_empty.stderr
│ │ │ ├── call_missing_weight.stderr
│ │ │ ├── call_invalid_return.stderr
│ │ │ ├── storage_value_no_generic.stderr
│ │ │ ├── type_value_error_in_block.stderr
│ │ │ ├── storage_not_storage_type.stderr
│ │ │ ├── genesis_inconsistent_build_config.stderr
│ │ │ ├── event_type_invalid_bound_2.stderr
│ │ │ ├── call_invalid_origin_type.stderr
│ │ │ ├── storage_value_generic_named_and_unnamed.stderr
│ │ │ ├── trait_no_supertrait.stderr
│ │ │ ├── hooks_invalid_item.rs
│ │ │ ├── store_trait_leak_private.stderr
│ │ │ └── mod_not_inlined.stderr
│ │ │ ├── construct_runtime_ui
│ │ │ ├── missing_where_block.rs
│ │ │ ├── invalid_token_after_name.stderr
│ │ │ ├── no_comma_after_where.stderr
│ │ │ ├── missing_module_instance.stderr
│ │ │ ├── empty_pallet_path.stderr
│ │ │ ├── missing_where_block.stderr
│ │ │ ├── invalid_where_param.stderr
│ │ │ ├── more_than_256_modules.stderr
│ │ │ ├── missing_where_param.rs
│ │ │ ├── abundant_where_param.stderr
│ │ │ ├── missing_where_param.stderr
│ │ │ ├── invalid_module_details.stderr
│ │ │ ├── invalid_token_after_module.stderr
│ │ │ ├── missing_system_module.stderr
│ │ │ ├── abundant_where_param.rs
│ │ │ ├── missing_system_module.rs
│ │ │ ├── empty_pallet_path.rs
│ │ │ ├── exclude_missspell.stderr
│ │ │ ├── invalid_module_entry.stderr
│ │ │ ├── invalid_where_param.rs
│ │ │ ├── duplicate_exclude.stderr
│ │ │ ├── invalid_token_after_name.rs
│ │ │ ├── invalid_module_details_keyword.stderr
│ │ │ ├── no_comma_after_where.rs
│ │ │ ├── double_module_parts.stderr
│ │ │ ├── invalid_module_details.rs
│ │ │ ├── invalid_token_after_module.rs
│ │ │ ├── missing_module_instance.rs
│ │ │ ├── invalid_module_details_keyword.rs
│ │ │ ├── exclude_missspell.rs
│ │ │ ├── duplicate_exclude.rs
│ │ │ ├── conflicting_index.rs
│ │ │ ├── missing_event_generic_on_module_with_instance.stderr
│ │ │ ├── invalid_module_entry.rs
│ │ │ ├── missing_origin_generic_on_module_with_instance.stderr
│ │ │ ├── more_than_256_modules.rs
│ │ │ ├── generics_in_invalid_module.stderr
│ │ │ ├── double_module_parts.rs
│ │ │ ├── generics_in_invalid_module.rs
│ │ │ ├── missing_event_generic_on_module_with_instance.rs
│ │ │ ├── conflicting_module_name.rs
│ │ │ ├── missing_origin_generic_on_module_with_instance.rs
│ │ │ ├── conflicting_module_name.stderr
│ │ │ └── conflicting_index_2.rs
│ │ │ ├── derive_no_bound_ui
│ │ │ ├── eq.rs
│ │ │ ├── clone.rs
│ │ │ ├── debug.rs
│ │ │ ├── default.rs
│ │ │ ├── partial_eq.rs
│ │ │ ├── partial_eq.stderr
│ │ │ ├── clone.stderr
│ │ │ └── debug.stderr
│ │ │ ├── decl_storage_ui
│ │ │ ├── config_duplicate.stderr
│ │ │ ├── get_duplicate.stderr
│ │ │ └── config_get_duplicate.stderr
│ │ │ └── decl_module_ui
│ │ │ ├── reserved_keyword_two_times_integrity_test.rs
│ │ │ └── reserved_keyword_two_times_on_initialize.rs
│ ├── offences
│ │ ├── benchmarking
│ │ │ └── README.md
│ │ └── README.md
│ ├── session
│ │ └── benchmarking
│ │ │ └── README.md
│ ├── contracts
│ │ ├── rpc
│ │ │ ├── README.md
│ │ │ └── runtime-api
│ │ │ │ └── README.md
│ │ ├── common
│ │ │ └── README.md
│ │ ├── fixtures
│ │ │ ├── dummy.wat
│ │ │ ├── run_out_of_gas.wat
│ │ │ └── invalid_import.wat
│ │ └── benchmarks
│ │ │ ├── ink_erc20.wasm
│ │ │ ├── solang_erc20.wasm
│ │ │ └── ink_erc20_test.wasm
│ ├── transaction-payment
│ │ └── rpc
│ │ │ ├── README.md
│ │ │ └── runtime-api
│ │ │ └── README.md
│ ├── authorship
│ │ └── README.md
│ ├── indices
│ │ └── README.md
│ ├── babe
│ │ └── README.md
│ ├── authority-discovery
│ │ └── README.md
│ ├── membership
│ │ └── README.md
│ └── examples
│ │ └── parallel
│ │ └── README.md
│ ├── utils
│ ├── frame
│ │ ├── benchmarking-cli
│ │ │ └── README.md
│ │ ├── frame-utilities-cli
│ │ │ └── README.md
│ │ ├── rpc
│ │ │ ├── system
│ │ │ │ └── README.md
│ │ │ └── support
│ │ │ │ └── README.md
│ │ └── remote-externalities
│ │ │ └── test_data
│ │ │ └── proxy_test.top
│ ├── build-script-utils
│ │ └── README.md
│ └── fork-tree
│ │ └── README.md
│ ├── bin
│ ├── node-template
│ │ ├── pallets
│ │ │ └── template
│ │ │ │ └── README.md
│ │ ├── runtime
│ │ │ └── build.rs
│ │ ├── node
│ │ │ ├── build.rs
│ │ │ └── src
│ │ │ │ └── main.rs
│ │ ├── .editorconfig
│ │ └── scripts
│ │ │ ├── docker_run.sh
│ │ │ └── init.sh
│ └── utils
│ │ └── chain-spec-builder
│ │ └── README.md
│ ├── primitives
│ ├── authorship
│ │ └── README.md
│ ├── npos-elections
│ │ ├── fuzzer
│ │ │ └── .gitignore
│ │ └── solution-type
│ │ │ └── tests
│ │ │ └── ui
│ │ │ └── fail
│ │ │ ├── missing_voter.stderr
│ │ │ ├── missing_target.stderr
│ │ │ ├── no_annotations.stderr
│ │ │ ├── missing_accuracy.stderr
│ │ │ ├── swap_voter_target.stderr
│ │ │ ├── wrong_attribute.stderr
│ │ │ ├── no_annotations.rs
│ │ │ ├── missing_target.rs
│ │ │ ├── missing_voter.rs
│ │ │ ├── missing_accuracy.rs
│ │ │ ├── swap_voter_target.rs
│ │ │ └── wrong_attribute.rs
│ ├── consensus
│ │ ├── aura
│ │ │ └── README.md
│ │ ├── babe
│ │ │ └── README.md
│ │ ├── vrf
│ │ │ └── README.md
│ │ ├── slots
│ │ │ └── README.md
│ │ ├── pow
│ │ │ └── README.md
│ │ └── common
│ │ │ └── README.md
│ ├── block-builder
│ │ └── README.md
│ ├── io
│ │ └── README.md
│ ├── rpc
│ │ └── README.md
│ ├── runtime
│ │ └── README.md
│ ├── session
│ │ └── README.md
│ ├── blockchain
│ │ └── README.md
│ ├── offchain
│ │ └── README.md
│ ├── state-machine
│ │ └── README.md
│ ├── storage
│ │ └── README.md
│ ├── tasks
│ │ └── README.md
│ ├── authority-discovery
│ │ └── README.md
│ ├── keyring
│ │ └── README.md
│ ├── timestamp
│ │ └── README.md
│ ├── transaction-pool
│ │ └── README.md
│ ├── arithmetic
│ │ └── README.md
│ ├── database
│ │ └── README.md
│ ├── finality-grandpa
│ │ └── README.md
│ ├── wasm-interface
│ │ └── README.md
│ ├── maybe-compressed-blob
│ │ └── README.md
│ ├── trie
│ │ ├── README.md
│ │ └── test-res
│ │ │ ├── proof
│ │ │ ├── storage_root
│ │ │ ├── valid-delta-order
│ │ │ └── invalid-delta-order
│ ├── version
│ │ └── README.md
│ ├── application-crypto
│ │ └── README.md
│ ├── api
│ │ └── test
│ │ │ └── tests
│ │ │ └── ui
│ │ │ ├── adding_self_parameter.rs
│ │ │ ├── declaring_old_block.rs
│ │ │ ├── declaring_own_block_with_different_name.rs
│ │ │ ├── invalid_api_version.rs
│ │ │ ├── invalid_api_version_2.rs
│ │ │ ├── invalid_api_version_3.rs
│ │ │ ├── adding_self_parameter.stderr
│ │ │ ├── no_default_implementation.rs
│ │ │ ├── invalid_api_version.stderr
│ │ │ ├── missing_block_generic_parameter.stderr
│ │ │ ├── changed_in_unknown_version.stderr
│ │ │ ├── invalid_api_version_3.stderr
│ │ │ ├── invalid_api_version_2.stderr
│ │ │ ├── missing_path_for_trait.stderr
│ │ │ ├── changed_in_no_default_method.stderr
│ │ │ ├── impl_two_traits_with_same_name.stderr
│ │ │ ├── mock_advanced_missing_blockid.stderr
│ │ │ ├── no_default_implementation.stderr
│ │ │ ├── empty_impl_runtime_apis_call.stderr
│ │ │ ├── declaring_own_block_with_different_name.stderr
│ │ │ ├── mock_only_one_block_type.stderr
│ │ │ ├── mock_only_one_self_type.stderr
│ │ │ └── mock_only_self_reference.rs
│ ├── runtime-interface
│ │ └── tests
│ │ │ └── ui
│ │ │ ├── pass_by_enum_with_struct.rs
│ │ │ ├── no_method_implementation.rs
│ │ │ ├── take_self_by_value.rs
│ │ │ ├── no_generic_parameters_trait.rs
│ │ │ ├── no_method_implementation.stderr
│ │ │ ├── no_generic_parameters_method.rs
│ │ │ ├── pass_by_enum_with_value_variant.rs
│ │ │ ├── take_self_by_value.stderr
│ │ │ ├── no_generic_parameters_trait.stderr
│ │ │ ├── no_generic_parameters_method.stderr
│ │ │ ├── no_gaps_in_versions.stderr
│ │ │ ├── pass_by_inner_with_two_fields.rs
│ │ │ ├── no_duplicate_versions.rs
│ │ │ ├── no_duplicate_versions.stderr
│ │ │ ├── no_gaps_in_versions.rs
│ │ │ ├── pass_by_enum_with_struct.stderr
│ │ │ ├── pass_by_enum_with_value_variant.stderr
│ │ │ └── pass_by_inner_with_two_fields.stderr
│ ├── transaction-storage-proof
│ │ └── README.md
│ ├── std
│ │ └── README.md
│ ├── serializer
│ │ └── README.md
│ ├── staking
│ │ └── README.md
│ ├── externalities
│ │ └── README.md
│ └── panic-handler
│ │ └── README.md
│ ├── client
│ ├── executor
│ │ ├── wasmtime
│ │ │ └── README.md
│ │ ├── common
│ │ │ └── README.md
│ │ └── wasmi
│ │ │ └── README.md
│ ├── cli
│ │ ├── README.md
│ │ └── README.adoc
│ ├── api
│ │ └── README.md
│ ├── consensus
│ │ ├── babe
│ │ │ └── rpc
│ │ │ │ └── README.md
│ │ ├── uncles
│ │ │ └── README.md
│ │ ├── common
│ │ │ └── README.md
│ │ ├── epochs
│ │ │ └── README.md
│ │ ├── manual-seal
│ │ │ └── README.md
│ │ └── slots
│ │ │ └── README.md
│ ├── rpc-servers
│ │ └── README.md
│ ├── finality-grandpa
│ │ └── rpc
│ │ │ └── README.md
│ ├── proposer-metrics
│ │ └── README.md
│ ├── keystore
│ │ └── README.md
│ ├── rpc
│ │ └── README.md
│ ├── informant
│ │ └── README.md
│ ├── peerset
│ │ └── README.md
│ ├── rpc-api
│ │ └── README.md
│ ├── service
│ │ └── README.md
│ ├── authority-discovery
│ │ ├── build.rs
│ │ ├── README.md
│ │ └── src
│ │ │ └── worker
│ │ │ └── schema
│ │ │ └── dht-v1.proto
│ ├── network
│ │ └── build.rs
│ ├── allocator
│ │ └── README.md
│ ├── tracing
│ │ └── README.md
│ └── block-builder
│ │ └── README.md
│ ├── .dockerignore
│ ├── docs
│ ├── media
│ │ └── sub.gif
│ └── Upgrade.md
│ ├── .github
│ ├── workflows
│ │ └── mlc_config.json
│ ├── dependabot.yml
│ └── allowed-actions.js
│ ├── .maintain
│ ├── update-deps.sh
│ ├── init.sh
│ ├── local-docker-test-network
│ │ ├── grafana
│ │ │ └── provisioning
│ │ │ │ └── dashboards
│ │ │ │ └── dashboards.yml
│ │ └── prometheus
│ │ │ └── prometheus.yml
│ ├── monitoring
│ │ └── grafana-dashboards
│ │ │ └── README_dashboard.md
│ ├── getgoing.sh
│ └── node-template-release.sh
│ └── test-utils
│ └── tests
│ └── ui
│ └── too-many-func-parameters.stderr
├── src
└── main.rs
├── Cargo.lock
├── docs
└── readme.md
└── Cargo.toml
/packages/axum/axum-v0.4.5/.clippy.toml:
--------------------------------------------------------------------------------
1 | msrv = "1.51"
2 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/.clippy.toml:
--------------------------------------------------------------------------------
1 | msrv = "1.45"
2 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 | Cargo.lock
3 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/.gitattributes:
--------------------------------------------------------------------------------
1 | * text eol=lf
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/todo/db/DB_LIVES_HERE:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/todo/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/.gitignore:
--------------------------------------------------------------------------------
1 | target
2 | Cargo.lock
3 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio-util/src/sync/tests/mod.rs:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/main.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | println!("Hello, world!");
3 | }
4 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/tests/static/.hidden:
--------------------------------------------------------------------------------
1 | Peek-a-boo.
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/tests/static/inner/.hideme:
--------------------------------------------------------------------------------
1 | Oh no!
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/tests/static/other/hello.txt:
--------------------------------------------------------------------------------
1 | Hi!
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/databases/db/diesel/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio-util/src/loom.rs:
--------------------------------------------------------------------------------
1 | pub(crate) use std::sync;
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/fuzz/corpus/uri-parsing/asterisk.seed:
--------------------------------------------------------------------------------
1 | *
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/tests/static/inner/goodbye:
--------------------------------------------------------------------------------
1 | Thanks for coming!
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/tests/static/inner/index.html:
--------------------------------------------------------------------------------
1 | Inner index.
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/fairings/Rocket.toml:
--------------------------------------------------------------------------------
1 | [global]
2 | token = 123
3 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/examples/sse/assets/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/examples/templates/templates/hello.html:
--------------------------------------------------------------------------------
1 |
Hello, {{ name }}!
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/contrib/dyn_templates/tests/templates/hbs/reload.txt.hbs:
--------------------------------------------------------------------------------
1 | initial
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/manual-routing/Rocket.toml:
--------------------------------------------------------------------------------
1 | [global]
2 | port = 8000
3 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/static-files/static/hidden/hi.txt:
--------------------------------------------------------------------------------
1 | You found me! :o
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/.gitattributes:
--------------------------------------------------------------------------------
1 | Cargo.lock linguist-generated=true
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/gilt/README.md:
--------------------------------------------------------------------------------
1 |
2 | License: Apache-2.0
3 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/examples/websockets/assets/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/tests/static/index.html:
--------------------------------------------------------------------------------
1 | Just a file here: index.html.
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/system/benchmarking/README.md:
--------------------------------------------------------------------------------
1 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/utils/frame/benchmarking-cli/README.md:
--------------------------------------------------------------------------------
1 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-build/src/lib.rs:
--------------------------------------------------------------------------------
1 | #[cfg(feature = "tokio")]
2 | pub use tokio;
3 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/contrib/dyn_templates/tests/templates/hbs/common/footer.html.hbs:
--------------------------------------------------------------------------------
1 | Done.
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/bin/node-template/pallets/template/README.md:
--------------------------------------------------------------------------------
1 | License: Unlicense
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/fuzz/.gitignore:
--------------------------------------------------------------------------------
1 | target
2 | corpus/*/*
3 | artifacts
4 | !*.seed
5 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/templating/Rocket.toml:
--------------------------------------------------------------------------------
1 | [default]
2 | template_dir = "templates"
3 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/fuzz/corpus/uri-parsing/authority.seed:
--------------------------------------------------------------------------------
1 | username:password@some.host:8088
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/bags-list/fuzzer/.gitignore:
--------------------------------------------------------------------------------
1 | hfuzz_target
2 | hfuzz_workspace
3 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/contrib/dyn_templates/tests/templates/hbs/common/header.html.hbs:
--------------------------------------------------------------------------------
1 | Hello {{ title }}!
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/todo/migrations/20160720150332_create_tasks_table/down.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE tasks
2 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio-util/src/udp/mod.rs:
--------------------------------------------------------------------------------
1 | //! UDP framing
2 |
3 | mod frame;
4 | pub use frame::UdpFramed;
5 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio/src/net/unix/datagram/mod.rs:
--------------------------------------------------------------------------------
1 | //! Unix datagram types.
2 |
3 | pub(crate) mod socket;
4 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/README.md:
--------------------------------------------------------------------------------
1 | Support code for the runtime.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/authorship/README.md:
--------------------------------------------------------------------------------
1 | Authorship Primitives
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/npos-elections/fuzzer/.gitignore:
--------------------------------------------------------------------------------
1 | hfuzz_target
2 | hfuzz_workspace
3 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: [tokio-rs]
4 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio/src/net/windows/mod.rs:
--------------------------------------------------------------------------------
1 | //! Windows specific network types.
2 |
3 | pub mod named_pipe;
4 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/benchmarks/src/bench.rs:
--------------------------------------------------------------------------------
1 | mod routing;
2 |
3 | criterion::criterion_main!(routing::routing);
4 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/fuzz/corpus/uri-parsing/origin.seed:
--------------------------------------------------------------------------------
1 | /first_segment/second_segment/third?optional=query
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/executor/wasmtime/README.md:
--------------------------------------------------------------------------------
1 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/consensus/aura/README.md:
--------------------------------------------------------------------------------
1 | Primitives for Aura.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/consensus/babe/README.md:
--------------------------------------------------------------------------------
1 | Primitives for BABE.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-integration/README.md:
--------------------------------------------------------------------------------
1 | Tests that require additional components than just the `tokio` crate.
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/fuzz/corpus/uri-parsing/absolute.seed:
--------------------------------------------------------------------------------
1 | http://user:pass@domain.com:4444/foo/bar?some=query
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/databases/db/diesel/migrations/20210329150332_create_posts_table/down.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE posts;
2 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/forms/Rocket.toml:
--------------------------------------------------------------------------------
1 | [default]
2 | limits.data-form = "2MiB"
3 | template_dir = "templates/"
4 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/templating/templates/hbs/footer.html.hbs:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/bin/utils/chain-spec-builder/README.md:
--------------------------------------------------------------------------------
1 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/block-builder/README.md:
--------------------------------------------------------------------------------
1 | The block builder runtime api.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/io/README.md:
--------------------------------------------------------------------------------
1 | I/O host interface for substrate runtime.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/rpc/README.md:
--------------------------------------------------------------------------------
1 | Substrate RPC primitives and utilities.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/codegen/src/attribute/mod.rs:
--------------------------------------------------------------------------------
1 | pub mod catch;
2 | pub mod entry;
3 | pub mod param;
4 | pub mod route;
5 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/offences/benchmarking/README.md:
--------------------------------------------------------------------------------
1 | Offences pallet benchmarking.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/runtime/README.md:
--------------------------------------------------------------------------------
1 | Runtime Modules shared primitive types.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/session/README.md:
--------------------------------------------------------------------------------
1 | Substrate core types around sessions.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/utils/frame/frame-utilities-cli/README.md:
--------------------------------------------------------------------------------
1 | frame-system CLI utilities
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/utils/frame/rpc/system/README.md:
--------------------------------------------------------------------------------
1 | System FRAME specific RPC methods.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/.dockerignore:
--------------------------------------------------------------------------------
1 | doc
2 | **target*
3 | .idea/
4 | Dockerfile
5 | .dockerignore
6 | .local
7 | .env*
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/session/benchmarking/README.md:
--------------------------------------------------------------------------------
1 | Benchmarks for the Session Pallet.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/blockchain/README.md:
--------------------------------------------------------------------------------
1 | Substrate blockchain traits and primitives.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/offchain/README.md:
--------------------------------------------------------------------------------
1 | The Offchain Worker runtime api primitives.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/state-machine/README.md:
--------------------------------------------------------------------------------
1 | Substrate state machine implementation.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/storage/README.md:
--------------------------------------------------------------------------------
1 | Primitive types for storage related stuff.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/tasks/README.md:
--------------------------------------------------------------------------------
1 | Runtime asynchronous, pure computational tasks.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/fuzz/corpus/uri-parsing/reference.seed:
--------------------------------------------------------------------------------
1 | http://user:pass@domain.com:4444/foo/bar?some=query#and-fragment
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/cli/README.md:
--------------------------------------------------------------------------------
1 | Substrate CLI library.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/offences/README.md:
--------------------------------------------------------------------------------
1 | # Offences Module
2 |
3 | Tracks reported offences
4 |
5 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/consensus/vrf/README.md:
--------------------------------------------------------------------------------
1 | Primitives for VRF-based consensus engines.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-integration/src/lib.rs:
--------------------------------------------------------------------------------
1 | #[cfg(feature = "full")]
2 | doc_comment::doc_comment!(include_str!("../../README.md"));
3 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/templating/templates/hbs/nav.html.hbs:
--------------------------------------------------------------------------------
1 | Hello | About
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/api/README.md:
--------------------------------------------------------------------------------
1 | Substrate client interfaces.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/authority-discovery/README.md:
--------------------------------------------------------------------------------
1 | Runtime Api to help discover authorities.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/consensus/slots/README.md:
--------------------------------------------------------------------------------
1 | Primitives for slots-based consensus engines.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/keyring/README.md:
--------------------------------------------------------------------------------
1 | Support code for the runtime. A set of test accounts.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/timestamp/README.md:
--------------------------------------------------------------------------------
1 | Substrate core types and inherents for timestamps.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio/tests/_require_full.rs:
--------------------------------------------------------------------------------
1 | #![cfg(not(feature = "full"))]
2 | compile_error!("run main Tokio tests with `--features full`");
3 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/not_a_function.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | struct A;
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/not_async.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | fn handler() {}
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/templating/templates/tera/nav.html.tera:
--------------------------------------------------------------------------------
1 | Hello | About
2 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/consensus/babe/rpc/README.md:
--------------------------------------------------------------------------------
1 | RPC api for babe.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/rpc-servers/README.md:
--------------------------------------------------------------------------------
1 | Substrate RPC servers.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/contracts/rpc/README.md:
--------------------------------------------------------------------------------
1 | Node-specific RPC methods for interaction with contracts.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/consensus/pow/README.md:
--------------------------------------------------------------------------------
1 | Primitives for Substrate Proof-of-Work (PoW) consensus.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/transaction-pool/README.md:
--------------------------------------------------------------------------------
1 | Transaction pool primitives types & Runtime API.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/utils/build-script-utils/README.md:
--------------------------------------------------------------------------------
1 | Crate with utility functions for `build.rs` scripts.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio-util/tests/_require_full.rs:
--------------------------------------------------------------------------------
1 | #![cfg(not(feature = "full"))]
2 | compile_error!("run tokio-util tests with `--features full`");
3 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/finality-grandpa/rpc/README.md:
--------------------------------------------------------------------------------
1 | RPC API for GRANDPA.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/pallet_ui/mod_not_inlined.rs:
--------------------------------------------------------------------------------
1 | #[frame_support::pallet]
2 | mod foo;
3 |
4 | fn main() {
5 | }
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/transaction-payment/rpc/README.md:
--------------------------------------------------------------------------------
1 | RPC interface for the transaction payment pallet.
2 |
3 | License: Apache-2.0
4 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/generics.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | async fn handler() {}
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/cookies/Rocket.toml:
--------------------------------------------------------------------------------
1 | [default]
2 | secret_key = "itlYmFR2vYKrOmFhupMIn/hyB6lYCCTXz4yaQX89XVg="
3 | template_dir = "templates"
4 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/todo/Rocket.toml:
--------------------------------------------------------------------------------
1 | [default]
2 | template_dir = "static"
3 |
4 | [default.databases.sqlite_database]
5 | url = "db/db.sqlite"
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/cli/README.adoc:
--------------------------------------------------------------------------------
1 |
2 | = Substrate CLI
3 |
4 | Substrate CLI library
5 |
6 | include::doc/shell-completion.adoc[]
7 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/arithmetic/README.md:
--------------------------------------------------------------------------------
1 | Minimal fixed point arithmetic primitives and types for runtime.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | members = [
3 | "axum",
4 | "axum-core",
5 | "axum-debug",
6 | "axum-extra",
7 | "examples/*",
8 | ]
9 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/invalid_attrs.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler(foo)]
4 | async fn handler() {}
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/not_a_function.stderr:
--------------------------------------------------------------------------------
1 | error: expected `fn`
2 | --> tests/fail/not_a_function.rs:4:1
3 | |
4 | 4 | struct A;
5 | | ^^^^^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/consensus/uncles/README.md:
--------------------------------------------------------------------------------
1 | Uncles functionality for Substrate.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/proposer-metrics/README.md:
--------------------------------------------------------------------------------
1 | Prometheus basic proposer metrics.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/database/README.md:
--------------------------------------------------------------------------------
1 | The main database trait, allowing Substrate to store data persistently.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/finality-grandpa/README.md:
--------------------------------------------------------------------------------
1 | Primitives for GRANDPA integration, suitable for WASM compilation.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-build/tests/fail/macros_core_no_default.rs:
--------------------------------------------------------------------------------
1 | use tests_build::tokio;
2 |
3 | #[tokio::main]
4 | async fn my_fn() {}
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/contrib/dyn_templates/tests/templates/hbs/test.html.hbs:
--------------------------------------------------------------------------------
1 | {{> hbs/common/header }}
2 | {{ content }}
3 | {{> hbs/common/footer }}
4 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/pallet_ui/attr_non_empty.rs:
--------------------------------------------------------------------------------
1 | #[frame_support::pallet [foo]]
2 | mod foo {
3 | }
4 |
5 | fn main() {
6 | }
7 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/wasm-interface/README.md:
--------------------------------------------------------------------------------
1 | Types and traits for interfacing between the host and the wasm runtime.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio/src/sync/task/mod.rs:
--------------------------------------------------------------------------------
1 | //! Thread-safe task notification primitives.
2 |
3 | mod atomic_waker;
4 | pub(crate) use self::atomic_waker::AtomicWaker;
5 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/not_async.stderr:
--------------------------------------------------------------------------------
1 | error: Handlers must be `async fn`s
2 | --> tests/fail/not_async.rs:4:1
3 | |
4 | 4 | fn handler() {}
5 | | ^^
6 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/codegen/src/derive/mod.rs:
--------------------------------------------------------------------------------
1 | mod form_field;
2 | pub mod from_form;
3 | pub mod from_form_field;
4 | pub mod responder;
5 | pub mod uri_display;
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/docs/media/sub.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/docs/media/sub.gif
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/transaction-payment/rpc/runtime-api/README.md:
--------------------------------------------------------------------------------
1 | Runtime API definition for transaction payment pallet.
2 |
3 | License: Apache-2.0
4 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio/src/macros/thread_local.rs:
--------------------------------------------------------------------------------
1 | #[cfg(all(loom, test))]
2 | macro_rules! thread_local {
3 | ($($tts:tt)+) => { loom::thread_local!{ $($tts)+ } }
4 | }
5 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/argument_not_extractor.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | async fn handler(foo: bool) {}
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/src/router/mod.rs:
--------------------------------------------------------------------------------
1 | //! Rocket's router.
2 |
3 | mod collider;
4 | mod router;
5 |
6 | pub(crate) use collider::*;
7 | pub(crate) use router::*;
8 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/ed25519.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/ed25519.p12
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/contracts/common/README.md:
--------------------------------------------------------------------------------
1 | A crate that hosts a common definitions that are relevant for the pallet-contracts.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/maybe-compressed-blob/README.md:
--------------------------------------------------------------------------------
1 | Handling of blobs, typicaly validation code, which may be compressed.
2 |
3 | License: Apache-2.0
4 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/trie/README.md:
--------------------------------------------------------------------------------
1 | Utility functions to interact with Substrate's Base-16 Modified Merkle Patricia tree ("trie").
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-build/README.md:
--------------------------------------------------------------------------------
1 | Tests the various combination of feature flags. This is broken out to a separate
2 | crate to work around limitations with cargo features.
3 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-build/tests/fail/macros_dead_code.rs:
--------------------------------------------------------------------------------
1 | #![deny(dead_code)]
2 |
3 | use tests_build::tokio;
4 |
5 | #[tokio::main]
6 | async fn f() {}
7 |
8 | fn main() {}
9 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-build/tests/pass/macros_main_return.rs:
--------------------------------------------------------------------------------
1 | use tests_build::tokio;
2 |
3 | #[tokio::main]
4 | async fn main() -> Result<(), ()> {
5 | return Ok(());
6 | }
7 |
--------------------------------------------------------------------------------
/Cargo.lock:
--------------------------------------------------------------------------------
1 | # This file is automatically @generated by Cargo.
2 | # It is not intended for manual editing.
3 | version = 3
4 |
5 | [[package]]
6 | name = "annotated-rs"
7 | version = "0.1.0"
8 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-extra/src/middleware/mod.rs:
--------------------------------------------------------------------------------
1 | //! Additional types for creating middleware.
2 |
3 | pub mod middleware_fn;
4 |
5 | pub use self::middleware_fn::{from_fn, Next};
6 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/rsa_sha256.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/rsa_sha256.p12
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/consensus/common/README.md:
--------------------------------------------------------------------------------
1 | Collection of common consensus specific implementations
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/consensus/epochs/README.md:
--------------------------------------------------------------------------------
1 | Generic utilities for epoch-based consensus engines.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/version/README.md:
--------------------------------------------------------------------------------
1 | Version module for the Substrate runtime; Provides a function that returns the runtime version.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/.github/workflows/patch.toml:
--------------------------------------------------------------------------------
1 | # Patch dependencies to run all tests against versions of the crate in the
2 | # repository.
3 | [patch.crates-io]
4 | axum = { path = "axum" }
5 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/build.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | if let Some(true) = version_check::is_feature_flaggable() {
3 | println!("cargo:rustc-cfg=nightly");
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/ed25519_key.pem:
--------------------------------------------------------------------------------
1 | -----BEGIN PRIVATE KEY-----
2 | MC4CAQAwBQYDK2VwBCIEIKzhuOs4KVtmEBw86yumn8ID4tYm/aPmz8QtBIrlJkTE
3 | -----END PRIVATE KEY-----
4 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/application-crypto/README.md:
--------------------------------------------------------------------------------
1 | Traits and macros for constructing application specific strongly typed crypto wrappers.
2 |
3 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/invalid_attrs.stderr:
--------------------------------------------------------------------------------
1 | error: unknown argument
2 | --> tests/fail/invalid_attrs.rs:3:17
3 | |
4 | 3 | #[debug_handler(foo)]
5 | | ^^^
6 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/wrong_return_type.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | async fn handler() -> bool {
5 | false
6 | }
7 |
8 | fn main() {}
9 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/todo/static/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/rocket/rocket-0.5.0-rc.2/examples/todo/static/images/favicon.png
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/.github/workflows/mlc_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "ignorePatterns": [
3 | {
4 | "pattern": "^https://crates.io",
5 | }
6 | ]
7 | }
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/contracts/fixtures/dummy.wat:
--------------------------------------------------------------------------------
1 | ;; A valid contract which does nothing at all
2 | (module
3 | (func (export "deploy"))
4 | (func (export "call"))
5 | )
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/proof:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/proof
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/http/src/tls/mod.rs:
--------------------------------------------------------------------------------
1 | mod listener;
2 | mod util;
3 |
4 | #[cfg(feature = "mtls")]
5 | pub mod mtls;
6 |
7 | pub use listener::{Config, TlsListener};
8 | pub use rustls;
9 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/tests/twice_managed_state.rs:
--------------------------------------------------------------------------------
1 | struct A;
2 |
3 | #[test]
4 | #[should_panic]
5 | fn twice_managed_state() {
6 | let _ = rocket::build().manage(A).manage(A);
7 | }
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/keystore/README.md:
--------------------------------------------------------------------------------
1 | Keystore (and session key management) for ed25519 based chains like Polkadot.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/authorship/README.md:
--------------------------------------------------------------------------------
1 | Authorship tracking for FRAME runtimes.
2 |
3 | This tracks the current author of the block and recent uncles.
4 |
5 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/indices/README.md:
--------------------------------------------------------------------------------
1 | An index is a short form of an address. This module handles allocation
2 | of indices for a newly created accounts.
3 |
4 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/api/test/tests/ui/adding_self_parameter.rs:
--------------------------------------------------------------------------------
1 | sp_api::decl_runtime_apis! {
2 | pub trait Api {
3 | fn test(&self);
4 | }
5 | }
6 |
7 | fn main() {}
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/utils/fork-tree/README.md:
--------------------------------------------------------------------------------
1 | Utility library for managing tree-like ordered data with logic for pruning
2 | the tree while finalizing nodes.
3 |
4 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/examples/sse/assets/script.js:
--------------------------------------------------------------------------------
1 | var eventSource = new EventSource('sse');
2 |
3 | eventSource.onmessage = function(event) {
4 | console.log('Message from server ', event.data);
5 | }
6 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/static-files/static/rocket-icon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/rocket/rocket-0.5.0-rc.2/examples/static-files/static/rocket-icon.jpg
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/ecdsa_nistp256_sha256.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/ecdsa_nistp256_sha256.p12
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/ecdsa_nistp384_sha384.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/rocket/rocket-0.5.0-rc.2/examples/tls/private/ecdsa_nistp384_sha384.p12
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/executor/common/README.md:
--------------------------------------------------------------------------------
1 | A set of common definitions that are needed for defining execution engines.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/executor/wasmi/README.md:
--------------------------------------------------------------------------------
1 | This crate provides an implementation of `WasmModule` that is baked by wasmi.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/rpc/README.md:
--------------------------------------------------------------------------------
1 | Substrate RPC implementation.
2 |
3 | A core implementation of Substrate RPC interfaces.
4 |
5 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/api/test/tests/ui/declaring_old_block.rs:
--------------------------------------------------------------------------------
1 | sp_api::decl_runtime_apis! {
2 | pub trait Api {
3 | fn test();
4 | }
5 | }
6 |
7 | fn main() {}
8 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/pass/multiple_extractors.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | async fn handler(_one: String, _two: String, _three: String) {}
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/static-files/static/index.html:
--------------------------------------------------------------------------------
1 | Hello, world!
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/informant/README.md:
--------------------------------------------------------------------------------
1 | Console informant. Prints sync progress and block events. Runs on the calling thread.
2 |
3 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/babe/README.md:
--------------------------------------------------------------------------------
1 | Consensus extension module for BABE consensus. Collects on-chain randomness
2 | from VRF outputs and manages epoch transitions.
3 |
4 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/storage_root:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/storage_root
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tokio/tests/support/signal.rs:
--------------------------------------------------------------------------------
1 | pub fn send_signal(signal: libc::c_int) {
2 | use libc::{getpid, kill};
3 |
4 | unsafe {
5 | assert_eq!(kill(getpid(), signal), 0);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/contracts/benchmarks/ink_erc20.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/frame/contracts/benchmarks/ink_erc20.wasm
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/api/test/tests/ui/declaring_own_block_with_different_name.rs:
--------------------------------------------------------------------------------
1 | sp_api::decl_runtime_apis! {
2 | pub trait Api {
3 | fn test();
4 | }
5 | }
6 |
7 | fn main() {}
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/api/test/tests/ui/invalid_api_version.rs:
--------------------------------------------------------------------------------
1 | sp_api::decl_runtime_apis! {
2 | #[api_version]
3 | pub trait Api {
4 | fn test(data: u64);
5 | }
6 | }
7 |
8 | fn main() {}
9 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/runtime-interface/tests/ui/pass_by_enum_with_struct.rs:
--------------------------------------------------------------------------------
1 | use sp_runtime_interface::pass_by::PassByEnum;
2 |
3 | #[derive(PassByEnum)]
4 | struct Test;
5 |
6 | fn main() {}
7 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/valid-delta-order:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/valid-delta-order
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/core/lib/src/catcher/mod.rs:
--------------------------------------------------------------------------------
1 | //! Types and traits for error catchers and their handlers and return types.
2 |
3 | mod catcher;
4 | mod handler;
5 |
6 | pub use catcher::*;
7 | pub use handler::*;
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/contracts/benchmarks/solang_erc20.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/frame/contracts/benchmarks/solang_erc20.wasm
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/construct_runtime_ui/missing_where_block.rs:
--------------------------------------------------------------------------------
1 | use frame_support::construct_runtime;
2 |
3 | construct_runtime! {
4 | pub enum Runtime {}
5 | }
6 |
7 | fn main() {}
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/api/test/tests/ui/invalid_api_version_2.rs:
--------------------------------------------------------------------------------
1 | sp_api::decl_runtime_apis! {
2 | #[api_version("1")]
3 | pub trait Api {
4 | fn test(data: u64);
5 | }
6 | }
7 |
8 | fn main() {}
9 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/api/test/tests/ui/invalid_api_version_3.rs:
--------------------------------------------------------------------------------
1 | sp_api::decl_runtime_apis! {
2 | #[api_version()]
3 | pub trait Api {
4 | fn test(data: u64);
5 | }
6 | }
7 |
8 | fn main() {}
9 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/invalid-delta-order:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/primitives/trie/test-res/invalid-delta-order
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/pass/associated_fn_without_self.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | struct A;
4 |
5 | impl A {
6 | #[debug_handler]
7 | async fn handler() {}
8 | }
9 |
10 | fn main() {}
11 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/pass/ready.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 | use std::future::{Ready, ready};
3 |
4 | #[debug_handler]
5 | fn handler() -> Ready<()> {
6 | ready(())
7 | }
8 |
9 | fn main() {}
10 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/peerset/README.md:
--------------------------------------------------------------------------------
1 | Peer Set Manager (PSM). Contains the strategy for choosing which nodes the network should be
2 | connected to.
3 |
4 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/contracts/benchmarks/ink_erc20_test.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/better-rs/annotated-rs/HEAD/packages/substrate/substrate-monthly-2022-02/frame/contracts/benchmarks/ink_erc20_test.wasm
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/contracts/fixtures/run_out_of_gas.wat:
--------------------------------------------------------------------------------
1 | (module
2 | (func (export "call")
3 | (loop $inf (br $inf)) ;; just run out of gas
4 | (unreachable)
5 | )
6 | (func (export "deploy"))
7 | )
8 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/npos-elections/solution-type/tests/ui/fail/missing_voter.stderr:
--------------------------------------------------------------------------------
1 | error: Expected binding: `VoterIndex = ...`
2 | --> $DIR/missing_voter.rs:4:2
3 | |
4 | 4 | u16,
5 | | ^^^
6 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/not_send.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | async fn handler() {
5 | let rc = std::rc::Rc::new(());
6 | async {}.await;
7 | }
8 |
9 | fn main() {}
10 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/pass/mut_extractor.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 |
3 | #[debug_handler]
4 | async fn handler(mut foo: String) -> String {
5 | foo += "bar";
6 | foo
7 | }
8 |
9 | fn main() {}
10 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-extra/src/response/mod.rs:
--------------------------------------------------------------------------------
1 | //! Additional types for generating responses.
2 |
3 | #[cfg(feature = "erased-json")]
4 | mod erased_json;
5 |
6 | #[cfg(feature = "erased-json")]
7 | pub use erased_json::ErasedJson;
8 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/contrib/dyn_templates/tests/templates/tera/html_test.html.tera:
--------------------------------------------------------------------------------
1 | {% extends "tera/base" %}
2 | {% block title %}{{ title }}{% endblock title %}
3 | {% block content %}
4 | {{ content }}
5 | {% endblock content %}
6 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/contrib/dyn_templates/tests/templates/tera/txt_test.txt.tera:
--------------------------------------------------------------------------------
1 | {% extends "tera/base" %}
2 | {% block title %}{{ title }}{% endblock title %}
3 | {% block content %}
4 | {{ content }}
5 | {% endblock content %}
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/pallet_ui/event_wrong_item_name.stderr:
--------------------------------------------------------------------------------
1 | error: expected `Event`
2 | --> $DIR/event_wrong_item_name.rs:19:11
3 | |
4 | 19 | pub enum Foo {}
5 | | ^^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/npos-elections/solution-type/tests/ui/fail/missing_target.stderr:
--------------------------------------------------------------------------------
1 | error: Expected binding: `TargetIndex = ...`
2 | --> $DIR/missing_target.rs:5:2
3 | |
4 | 5 | u8,
5 | | ^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/npos-elections/solution-type/tests/ui/fail/no_annotations.stderr:
--------------------------------------------------------------------------------
1 | error: Expected binding: `VoterIndex = ...`
2 | --> $DIR/no_annotations.rs:4:2
3 | |
4 | 4 | u16,
5 | | ^^^
6 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/fail/extract_self_ref.stderr:
--------------------------------------------------------------------------------
1 | error: Handlers must only take owned values
2 | --> tests/fail/extract_self_ref.rs:23:22
3 | |
4 | 23 | async fn handler(&self) {}
5 | | ^^^^^
6 |
--------------------------------------------------------------------------------
/packages/rocket/rocket-0.5.0-rc.2/examples/hello/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "hello"
3 | version = "0.0.0"
4 | workspace = "../"
5 | edition = "2021"
6 | publish = false
7 |
8 | [dependencies]
9 | rocket = { path = "../../core/lib" }
10 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/client/rpc-api/README.md:
--------------------------------------------------------------------------------
1 | Substrate RPC interfaces.
2 |
3 | A collection of RPC methods and subscriptions supported by all substrate clients.
4 |
5 | License: GPL-3.0-or-later WITH Classpath-exception-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/authority-discovery/README.md:
--------------------------------------------------------------------------------
1 | # Authority discovery module.
2 |
3 | This module is used by the `client/authority-discovery` to retrieve the
4 | current set of authorities.
5 |
6 | License: Apache-2.0
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/construct_runtime_ui/invalid_token_after_name.stderr:
--------------------------------------------------------------------------------
1 | error: expected `:`
2 | --> $DIR/invalid_token_after_name.rs:9:10
3 | |
4 | 9 | system ?
5 | | ^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/construct_runtime_ui/no_comma_after_where.stderr:
--------------------------------------------------------------------------------
1 | error: Expected `,` or `{`
2 | --> $DIR/no_comma_after_where.rs:6:3
3 | |
4 | 6 | Block = Block,
5 | | ^^^^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/pallet_ui/error_wrong_item.stderr:
--------------------------------------------------------------------------------
1 | error: Invalid pallet::error, expected item enum
2 | --> $DIR/error_wrong_item.rs:19:2
3 | |
4 | 19 | pub struct Foo;
5 | | ^^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/pallet_ui/error_wrong_item_name.stderr:
--------------------------------------------------------------------------------
1 | error: expected `Error`
2 | --> $DIR/error_wrong_item_name.rs:19:11
3 | |
4 | 19 | pub enum Foo {}
5 | | ^^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/pallet_ui/event_wrong_item.stderr:
--------------------------------------------------------------------------------
1 | error: Invalid pallet::event, expected item enum
2 | --> $DIR/event_wrong_item.rs:19:2
3 | |
4 | 19 | pub struct Foo;
5 | | ^^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/frame/support/test/tests/pallet_ui/storage_wrong_item.stderr:
--------------------------------------------------------------------------------
1 | error: Invalid pallet::storage, expect item type.
2 | --> $DIR/storage_wrong_item.rs:19:2
3 | |
4 | 19 | impl Foo {}
5 | | ^^^^
6 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/runtime-interface/tests/ui/no_method_implementation.rs:
--------------------------------------------------------------------------------
1 | use sp_runtime_interface::runtime_interface;
2 |
3 | #[runtime_interface]
4 | trait Test {
5 | fn test();
6 | }
7 |
8 | fn main() {}
9 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/runtime-interface/tests/ui/take_self_by_value.rs:
--------------------------------------------------------------------------------
1 | use sp_runtime_interface::runtime_interface;
2 |
3 | #[runtime_interface]
4 | trait Test {
5 | fn test(self) {}
6 | }
7 |
8 | fn main() {}
9 |
--------------------------------------------------------------------------------
/packages/substrate/substrate-monthly-2022-02/primitives/transaction-storage-proof/README.md:
--------------------------------------------------------------------------------
1 | Transaction Storage Proof Primitives
2 |
3 | Contains types and basic code to extract storage proofs for indexed transactions.
4 |
5 | License: Apache-2.0
6 |
--------------------------------------------------------------------------------
/packages/tokio/tokio-1.14.1/tests-build/tests/macros_clippy.rs:
--------------------------------------------------------------------------------
1 | #[cfg(feature = "full")]
2 | #[tokio::test]
3 | async fn test_with_semicolon_without_return_type() {
4 | #![deny(clippy::semicolon_if_nothing_returned)]
5 |
6 | dbg!(0);
7 | }
8 |
--------------------------------------------------------------------------------
/packages/axum/axum-v0.4.5/axum-debug/tests/pass/impl_future.rs:
--------------------------------------------------------------------------------
1 | use axum_debug::debug_handler;
2 | use std::future::Future;
3 |
4 | #[debug_handler]
5 | fn handler() -> impl Future