summaryrefslogtreecommitdiff
path: root/crates/tor-rpcbase/src
Commit message (Expand)AuthorAgeFilesLines
...
* rpcbase: Feature to list the RPC methods and what they apply to.Nick Mathewson2024-08-123-0/+106
* rpcbase: Facility for looking up RPC method informationNick Mathewson2024-08-122-5/+43
* rpcbase: Expose Invocable type names directly.Nick Mathewson2024-08-121-6/+11
* rpc: Remove special conversion for SendUpdateError.Nick Mathewson2024-07-252-10/+6
* rpc: Rename the error codes for something like consistency.Nick Mathewson2024-07-251-16/+17
* rpc: Remove RpcError data field and use ReportNick Mathewson2024-07-252-87/+31
* rpc: Refactor errors part 1: a new RpcMethod trait.Nick Mathewson2024-07-253-28/+35
* rpcbase: remove now-unused invoke methodsNick Mathewson2024-07-252-71/+34
* rpcbase: Remove a TODO RPC about duplicationNick Mathewson2024-07-251-1/+0
* rpcbase: Replace a TODO with a set of notes and caveatsNick Mathewson2024-07-251-7/+10
* rpc: remove TODO about adding an extension traitNick Mathewson2024-07-251-4/+0
* rpc: Remove TODO about moving @special to a different macro.Nick Mathewson2024-07-251-4/+0
* rpc: Do not hide InvokeError::Bug when converting to RpcErrorNick Mathewson2024-07-251-18/+35
* rpc: split "method not found"Nick Mathewson2024-07-251-7/+7
* rpcbase: remove "Nil" TODO.Nick Mathewson2024-07-251-3/+0
* rpcbase: Use newer "tgens" deftly syntaxNick Mathewson2024-07-251-3/+1
* rpcbase: remove a TODO about expose_outside_of_sessionNick Mathewson2024-07-251-4/+0
* rpcbase: tests for crate-level invoke functions.Nick Mathewson2024-07-152-20/+73
* rpc: Test a previously unchecked cast function.Nick Mathewson2024-07-151-0/+3
* rpc: Test some lower level dispatch internals.Nick Mathewson2024-07-151-3/+80
* rpc: Tests for method name checking.Nick Mathewson2024-07-151-0/+38
* rpc: Add a test for failed downcast.Nick Mathewson2024-07-151-0/+9
* Change deftly syntax to post 0.12.1 versionIan Jackson2024-06-172-2/+2
* Update to derive-deftly 0.12.1Ian Jackson2024-06-171-1/+5
* rpc: Missing rpc_invoker is a Bug.Nick Mathewson2024-06-101-1/+6
* Add more explanation of InvokerEnt fields.Nick Mathewson2024-06-101-0/+8
* rpc: Add RPC method invocation based on Context, not dispatch table.Nick Mathewson2024-06-102-1/+58
* rpc: Pass around our rpc::Context in an Arc.Nick Mathewson2024-06-102-26/+26
* rpc: refactor DispatchTable invoker lookup into new functionsNick Mathewson2024-06-101-15/+36
* rpc: Implement Clone and HasKind on InvokeError.Nick Mathewson2024-06-101-1/+11
* Add a few "TODO RPC" notesNick Mathewson2024-05-162-0/+8
* RPC: Expose dispatch table from ContextNick Mathewson2024-05-162-0/+7
* RPC: Fill in documentation about invoke_specialNick Mathewson2024-05-162-6/+27
* Tests for invoke_specialNick Mathewson2024-05-161-0/+42
* RPC: Fix types for DispatchTable::invoke_specialNick Mathewson2024-05-161-11/+14
* RPC: Require an Error type in methods.Nick Mathewson2024-05-162-0/+8
* Rpc: Allow invoker_ents to be marked as @specialNick Mathewson2024-05-161-7/+21
* Relax Serialize requirement on method outputs.Nick Mathewson2024-05-162-11/+13
* Split Invocable into RpcInvocable.Nick Mathewson2024-05-161-50/+77
* RPC: Add an "invoke special" mechanismNick Mathewson2024-05-161-1/+62
* rpc: Move typetag onto subtrait of DynMethodNick Mathewson2024-05-162-16/+35
* RPC: Enforce method name format.Nick Mathewson2024-05-142-1/+75
* Fix rustdoc errors from !2140.Nick Mathewson2024-05-091-2/+2
* RPC: Use one cast table entry per type.Nick Mathewson2024-05-091-29/+47
* tor-rpcbase: Add facility to downcast to Arc<dyn Trait>.Nick Mathewson2024-05-093-9/+84
* Make cast_to_trait inherent on dyn Object.Nick Mathewson2024-05-091-4/+10
* rpc::invoker_ent_list: allow trailing comma.Nick Mathewson2024-05-091-1/+1
* rpc: Add helper type for methods that return a single id.Nick Mathewson2024-05-091-0/+8
* Merge branch 'void' into 'main'Nick Mathewson2024-05-071-7/+10
|\
| * tor-rpcbase: Use Void to eliminate a panic, as statically unreachableIan Jackson2024-05-021-7/+10