A library for ATProtocol identities.

chore: Removing unused dependencies

Signed-off-by: Nick Gerakines <nick.gerakines@gmail.com>

Changed files
-20
crates
atproto-oauth
atproto-oauth-axum
atproto-record
atproto-xrpcs
atproto-xrpcs-helloworld
-9
Cargo.lock
··· 183 183 "anyhow", 184 184 "async-trait", 185 185 "atproto-identity", 186 - "axum", 187 186 "base64", 188 187 "chrono", 189 188 "ecdsa", 190 189 "elliptic-curve", 191 - "http", 192 190 "k256", 193 191 "lru", 194 192 "multibase", ··· 249 247 "thiserror 2.0.12", 250 248 "tokio", 251 249 "tracing", 252 - "urlencoding", 253 250 "zeroize", 254 251 ] 255 252 ··· 262 259 "base64", 263 260 "chrono", 264 261 "clap", 265 - "ecdsa", 266 - "k256", 267 - "p256", 268 262 "serde", 269 263 "serde_ipld_dagcbor", 270 264 "serde_json", 271 265 "thiserror 2.0.12", 272 266 "tokio", 273 - "tracing", 274 267 ] 275 268 276 269 [[package]] ··· 297 290 "thiserror 2.0.12", 298 291 "tokio", 299 292 "tracing", 300 - "urlencoding", 301 293 ] 302 294 303 295 [[package]] ··· 325 317 "thiserror 2.0.12", 326 318 "tokio", 327 319 "tracing", 328 - "urlencoding", 329 320 ] 330 321 331 322 [[package]]
-1
crates/atproto-oauth-axum/Cargo.toml
··· 40 40 thiserror.workspace = true 41 41 tokio.workspace = true 42 42 tracing.workspace = true 43 - urlencoding = "2.1.3" 44 43 axum = { version = "0.8", features = ["macros"] } 45 44 http = "1.0.0" 46 45 clap = { workspace = true, optional = true }
-4
crates/atproto-oauth/Cargo.toml
··· 41 41 tracing.workspace = true 42 42 ulid.workspace = true 43 43 44 - axum = { version = "0.8", optional = true } 45 - http = { version = "1.0.0", optional = true } 46 - 47 44 zeroize = { workspace = true, optional = true } 48 45 49 46 [features] 50 47 default = ["lru", "hickory-dns"] 51 48 lru = ["dep:lru"] 52 - axum = ["dep:axum", "dep:http"] 53 49 zeroize = ["dep:zeroize", "atproto-identity/zeroize"] 54 50 hickory-dns = ["atproto-identity/hickory-dns"] 55 51
-4
crates/atproto-record/Cargo.toml
··· 32 32 atproto-identity.workspace = true 33 33 34 34 anyhow.workspace = true 35 - ecdsa.workspace = true 36 - k256.workspace = true 37 35 base64.workspace = true 38 - p256.workspace = true 39 36 serde_ipld_dagcbor.workspace = true 40 37 serde_json.workspace = true 41 38 serde.workspace = true 42 39 thiserror.workspace = true 43 - tracing.workspace = true 44 40 45 41 tokio = { workspace = true, optional = true } 46 42 chrono = {version = "0.4.41", default-features = false, features = ["std", "now"]}
-1
crates/atproto-xrpcs-helloworld/Cargo.toml
··· 38 38 thiserror.workspace = true 39 39 tokio.workspace = true 40 40 tracing.workspace = true 41 - urlencoding = "2.1.3" 42 41 axum = { version = "0.8", features = ["macros"] } 43 42 http = "1.0.0" 44 43 clap = { workspace = true, optional = true }
-1
crates/atproto-xrpcs/Cargo.toml
··· 30 30 thiserror.workspace = true 31 31 tokio.workspace = true 32 32 tracing.workspace = true 33 - urlencoding = "2.1.3" 34 33 axum = { version = "0.8", features = ["macros"] } 35 34 http = "1.0.0" 36 35