housekeeping(useragent): rename

This commit is contained in:
hdbg
2026-02-18 14:10:42 +01:00
parent 9dca7aff27
commit 7b57965952
56 changed files with 37 additions and 97 deletions

View File

@@ -28,4 +28,7 @@ rstest.workspace = true
rand.workspace = true
rcgen.workspace = true
[package.metadata.cargo-shear]
ignored = ["tonic-prost", "prost", "kameo"]

View File

@@ -0,0 +1,13 @@
use ed25519_dalek::SigningKey;
use kameo::Actor;
use tonic::transport::CertificateDer;
struct Storage {
pub identity: SigningKey,
pub server_ca_cert: CertificateDer<'static>,
}
#[derive(Actor)]
pub struct UserAgent {
}