diff --git a/Cargo.lock b/Cargo.lock index 0e6598c28..b2f0f8dd7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2423,7 +2423,7 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" [[package]] name = "jacquard" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "bytes", "clap", @@ -2457,7 +2457,7 @@ dependencies = [ [[package]] name = "jacquard-api" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "jacquard-common", "jacquard-derive", @@ -2469,7 +2469,7 @@ dependencies = [ [[package]] name = "jacquard-axum" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "axum", "axum-extra", @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "jacquard-common" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "base64", "bon", @@ -2573,7 +2573,7 @@ dependencies = [ [[package]] name = "jacquard-derive" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "heck", "inventory", @@ -2589,7 +2589,7 @@ dependencies = [ [[package]] name = "jacquard-identity" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "bon", "bytes", @@ -2612,7 +2612,7 @@ dependencies = [ [[package]] name = "jacquard-lexgen" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "clap", "clap_complete", @@ -2638,7 +2638,7 @@ dependencies = [ [[package]] name = "jacquard-lexicon" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "bytes", "cid", @@ -2666,7 +2666,7 @@ dependencies = [ [[package]] name = "jacquard-oauth" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "base64", "bytes", @@ -2702,7 +2702,7 @@ dependencies = [ [[package]] name = "jacquard-repo" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "anyhow", "bytes", @@ -2870,7 +2870,7 @@ dependencies = [ [[package]] name = "lazy-collections" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" dependencies = [ "buffer", "bytes", diff --git a/Cargo.toml b/Cargo.toml index e976d5bbf..0e909181f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = ["crates/*"] [workspace.package] edition = "2024" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors = ["Orual "] #repository = "https://github.com/rsform/jacquard" repository = "https://tangled.org/nonbinary.computer/jacquard" diff --git a/crates/jacquard-api/Cargo.toml b/crates/jacquard-api/Cargo.toml index 3e8ba140d..e1002a55c 100644 --- a/crates/jacquard-api/Cargo.toml +++ b/crates/jacquard-api/Cargo.toml @@ -2,7 +2,7 @@ name = "jacquard-api" description = "Generated AT Protocol API bindings for Jacquard" edition.workspace = true -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -15,9 +15,9 @@ license.workspace = true features = [ "bluesky", "other", "streaming" ] [dependencies] -jacquard-common = { version = "0.12.0-beta.1", path = "../jacquard-common" } -jacquard-derive = { version = "0.12.0-beta.1", path = "../jacquard-derive" } -jacquard-lexicon = { version = "0.12.0-beta.1", path = "../jacquard-lexicon", default-features = false } +jacquard-common = { version = "0.12.0-rc.1", path = "../jacquard-common" } +jacquard-derive = { version = "0.12.0-rc.1", path = "../jacquard-derive" } +jacquard-lexicon = { version = "0.12.0-rc.1", path = "../jacquard-lexicon", default-features = false } miette.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/crates/jacquard-axum/Cargo.toml b/crates/jacquard-axum/Cargo.toml index e4ad2ed50..e84a5127a 100644 --- a/crates/jacquard-axum/Cargo.toml +++ b/crates/jacquard-axum/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jacquard-axum" edition.workspace = true -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -29,10 +29,10 @@ axum-extra = { version = "0.10.3", features = ["cookie", "cookie-private"] } base64.workspace = true bytes.workspace = true chrono.workspace = true -jacquard = { version = "0.12.0-beta.1", path = "../jacquard", default-features = false, features = ["api"] } -jacquard-common = { version = "0.12.0-beta.1", path = "../jacquard-common", features = ["reqwest-client"] } -jacquard-derive = { version = "0.12.0-beta.1", path = "../jacquard-derive" } -jacquard-identity = { version = "0.12.0-beta.1", path = "../jacquard-identity", optional = true } +jacquard = { version = "0.12.0-rc.1", path = "../jacquard", default-features = false, features = ["api"] } +jacquard-common = { version = "0.12.0-rc.1", path = "../jacquard-common", features = ["reqwest-client"] } +jacquard-derive = { version = "0.12.0-rc.1", path = "../jacquard-derive" } +jacquard-identity = { version = "0.12.0-rc.1", path = "../jacquard-identity", optional = true } miette.workspace = true multibase = { version = "0.9.1", optional = true } mini-moka = { package = "mini-moka-wasm", version = "0.10", path = "../mini-moka-wasm", optional = true } diff --git a/crates/jacquard-common/Cargo.toml b/crates/jacquard-common/Cargo.toml index 8ae3e8cc0..5025a035c 100644 --- a/crates/jacquard-common/Cargo.toml +++ b/crates/jacquard-common/Cargo.toml @@ -2,7 +2,7 @@ name = "jacquard-common" description = "Core AT Protocol types and utilities for Jacquard" edition.workspace = true -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/jacquard-derive/Cargo.toml b/crates/jacquard-derive/Cargo.toml index 47dba23bd..346bd1792 100644 --- a/crates/jacquard-derive/Cargo.toml +++ b/crates/jacquard-derive/Cargo.toml @@ -16,15 +16,15 @@ proc-macro = true [dependencies] heck.workspace = true -jacquard-lexicon = { version = "0.12.0-beta.2", path = "../jacquard-lexicon", features = ["codegen"] } +jacquard-lexicon = { version = "0.12.0-rc.1", path = "../jacquard-lexicon", features = ["codegen"] } proc-macro2.workspace = true quote.workspace = true syn.workspace = true [dev-dependencies] inventory = "0.3" -jacquard-common = { version = "0.12.0-beta.2", path = "../jacquard-common" } -jacquard-lexicon = { version = "0.12.0-beta.2", path = "../jacquard-lexicon" } +jacquard-common = { version = "0.12.0-rc.1", path = "../jacquard-common" } +jacquard-lexicon = { version = "0.12.0-rc.1", path = "../jacquard-lexicon" } serde.workspace = true serde_json.workspace = true unicode-segmentation = "1.12" diff --git a/crates/jacquard-identity/Cargo.toml b/crates/jacquard-identity/Cargo.toml index 38475aa8b..b085d0267 100644 --- a/crates/jacquard-identity/Cargo.toml +++ b/crates/jacquard-identity/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jacquard-identity" edition.workspace = true -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -22,8 +22,8 @@ cache = ["dep:mini-moka"] trait-variant.workspace = true bon.workspace = true bytes.workspace = true -jacquard-common = { version = "0.12.0-beta.1", path = "../jacquard-common", features = ["reqwest-client"] } -jacquard-lexicon = { version = "0.12.0-beta.1", path = "../jacquard-lexicon", default-features = false } +jacquard-common = { version = "0.12.0-rc.1", path = "../jacquard-common", features = ["reqwest-client"] } +jacquard-lexicon = { version = "0.12.0-rc.1", path = "../jacquard-lexicon", default-features = false } reqwest.workspace = true serde.workspace = true serde_json.workspace = true diff --git a/crates/jacquard-lexgen/Cargo.toml b/crates/jacquard-lexgen/Cargo.toml index af9234bea..f2afdd937 100644 --- a/crates/jacquard-lexgen/Cargo.toml +++ b/crates/jacquard-lexgen/Cargo.toml @@ -2,7 +2,7 @@ name = "jacquard-lexgen" description = "Lexicon fetching and code generation binaries for Jacquard" edition.workspace = true -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -32,10 +32,10 @@ path = "../../examples/extract_inventory.rs" clap.workspace = true glob = "0.3" inventory = "0.3" -jacquard-common = { version = "0.12.0-beta.2", features = [ "reqwest-client" ], path = "../jacquard-common" } -jacquard-derive = { version = "0.12.0-beta.2", path = "../jacquard-derive" } -jacquard-identity = { version = "0.12.0-beta.2", path = "../jacquard-identity", features = ["dns"] } -jacquard-lexicon = { version = "0.12.0-beta.2", path = "../jacquard-lexicon" } +jacquard-common = { version = "0.12.0-rc.1", features = [ "reqwest-client" ], path = "../jacquard-common" } +jacquard-derive = { version = "0.12.0-rc.1", path = "../jacquard-derive" } +jacquard-identity = { version = "0.12.0-rc.1", path = "../jacquard-identity", features = ["dns"] } +jacquard-lexicon = { version = "0.12.0-rc.1", path = "../jacquard-lexicon" } kdl = "6" miette = { workspace = true, features = ["fancy"] } reqwest = { workspace = true, features = ["json", "http2", "system-proxy", "rustls-tls"] } diff --git a/crates/jacquard-lexicon/Cargo.toml b/crates/jacquard-lexicon/Cargo.toml index ec4aa5721..2d115908d 100644 --- a/crates/jacquard-lexicon/Cargo.toml +++ b/crates/jacquard-lexicon/Cargo.toml @@ -2,7 +2,7 @@ name = "jacquard-lexicon" description = "Lexicon schema parsing and code generation for Jacquard" edition.workspace = true -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -20,7 +20,7 @@ cid.workspace = true dashmap.workspace = true heck = { workspace = true, optional = true } inventory = "0.3" -jacquard-common = { version = "0.12.0-beta.2", path = "../jacquard-common" } +jacquard-common = { version = "0.12.0-rc.1", path = "../jacquard-common" } miette = { workspace = true } multihash.workspace = true prettyplease = { workspace = true, optional = true } diff --git a/crates/jacquard-oauth/Cargo.toml b/crates/jacquard-oauth/Cargo.toml index 948ac8dc2..64c8b067c 100644 --- a/crates/jacquard-oauth/Cargo.toml +++ b/crates/jacquard-oauth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacquard-oauth" -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" edition.workspace = true description = "AT Protocol OAuth 2.1 core types and helpers for Jacquard" authors.workspace = true @@ -22,9 +22,9 @@ streaming = ["jacquard-common/streaming", "dep:n0-future"] scope-check = ["dep:jacquard-lexicon"] [dependencies] -jacquard-common = { version = "0.12.0-beta.2", path = "../jacquard-common", features = ["reqwest-client"] } -jacquard-identity = { version = "0.12.0-beta.2", path = "../jacquard-identity" } -jacquard-lexicon = { version = "0.12.0-beta.2", path = "../jacquard-lexicon", optional = true } +jacquard-common = { version = "0.12.0-rc.1", path = "../jacquard-common", features = ["reqwest-client"] } +jacquard-identity = { version = "0.12.0-rc.1", path = "../jacquard-identity" } +jacquard-lexicon = { version = "0.12.0-rc.1", path = "../jacquard-lexicon", optional = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } smol_str = { workspace = true } diff --git a/crates/jacquard-repo/Cargo.toml b/crates/jacquard-repo/Cargo.toml index bf74aed11..c71262303 100644 --- a/crates/jacquard-repo/Cargo.toml +++ b/crates/jacquard-repo/Cargo.toml @@ -2,7 +2,7 @@ name = "jacquard-repo" description = "AT Protocol repository primitives: MST, commits, CAR I/O" edition.workspace = true -version = "0.12.0-beta.2" +version = "0.12.0-rc.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -16,9 +16,9 @@ default = [] [dependencies] # Internal -jacquard-common = { path = "../jacquard-common", version = "0.12.0-beta.2", features = ["crypto-ed25519", "crypto-k256", "crypto-p256"] } -jacquard-derive = { path = "../jacquard-derive", version = "0.12.0-beta.2" } -jacquard-api = { path = "../jacquard-api", version = "0.12.0-beta.2", features = ["streaming"] } +jacquard-common = { path = "../jacquard-common", version = "0.12.0-rc.1", features = ["crypto-ed25519", "crypto-k256", "crypto-p256"] } +jacquard-derive = { path = "../jacquard-derive", version = "0.12.0-rc.1" } +jacquard-api = { path = "../jacquard-api", version = "0.12.0-rc.1", features = ["streaming"] } # Serialization serde.workspace = true diff --git a/crates/jacquard/Cargo.toml b/crates/jacquard/Cargo.toml index d6fb70b96..d6124ca2a 100644 --- a/crates/jacquard/Cargo.toml +++ b/crates/jacquard/Cargo.toml @@ -125,13 +125,13 @@ path = "../../examples/moderated_timeline.rs" required-features = ["api_bluesky", "loopback"] [dependencies] -jacquard-api = { version = "0.12.0-beta.1", path = "../jacquard-api" } -jacquard-common = { version = "0.12.0-beta.1", path = "../jacquard-common", features = [ +jacquard-api = { version = "0.12.0-rc.1", path = "../jacquard-api" } +jacquard-common = { version = "0.12.0-rc.1", path = "../jacquard-common", features = [ "reqwest-client", ] } -jacquard-oauth = { version = "0.12.0-beta.1", path = "../jacquard-oauth" } -jacquard-derive = { version = "0.12.0-beta.1", path = "../jacquard-derive", optional = true } -jacquard-identity = { version = "0.12.0-beta.1", path = "../jacquard-identity" } +jacquard-oauth = { version = "0.12.0-rc.1", path = "../jacquard-oauth" } +jacquard-derive = { version = "0.12.0-rc.1", path = "../jacquard-derive", optional = true } +jacquard-identity = { version = "0.12.0-rc.1", path = "../jacquard-identity" } @@ -154,7 +154,7 @@ n0-future = { workspace = true, optional = true } [target.'cfg(not(target_family = "wasm"))'.dependencies] -jacquard-identity = { version = "0.12.0-beta.1", path = "../jacquard-identity", features = ["cache"] } +jacquard-identity = { version = "0.12.0-rc.1", path = "../jacquard-identity", features = ["cache"] } reqwest = { workspace = true, features = [ "http2", "gzip",