Skip to content

Commit 6a73c84

Browse files
fix publishing
1 parent f340999 commit 6a73c84

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

publish.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ cd crates/legacy/
1616
cargo publish
1717
cd ../../
1818

19+
cd integrations/axum/
20+
cargo publish
21+
cd ..
22+
1923
cd rspc/
2024
cargo publish
2125
cd ..

rspc/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ rustdoc-args = ["--cfg", "docsrs"]
2020
default = []
2121

2222
typescript = ["dep:specta-typescript", "dep:serde_json"]
23-
rust = ["dep:specta-rust"]
23+
rust = [] # TODO: "dep:specta-rust"]
2424

2525
# TODO: Remove
2626
legacy = ["dep:rspc-legacy"]
2727

2828
[dependencies]
2929
# Public
30-
rspc-procedure = { path = "../crates/procedure" }
31-
rspc-legacy = { path = "../crates/legacy", optional = true }
30+
rspc-procedure = { version = "0.0.1", path = "../crates/procedure" }
31+
rspc-legacy = { version = "0.0.1", path = "../crates/legacy", optional = true }
3232
serde = { workspace = true }
3333
futures-util = { workspace = true, features = ["alloc"] }
3434
specta = { workspace = true, features = [
@@ -40,7 +40,7 @@ specta = { workspace = true, features = [
4040
# Private
4141
specta-typescript = { workspace = true, optional = true, features = [] }
4242
serde_json = { workspace = true, optional = true }
43-
specta-rust = { git = "https://github.com/specta-rs/specta", optional = true, rev = "bf3a0937cceb29eca11df207076b9e1b942ba7bb" }
43+
# specta-rust = { git = "https://github.com/specta-rs/specta", optional = true, rev = "bf3a0937cceb29eca11df207076b9e1b942ba7bb" }
4444

4545
[lints]
4646
workspace = true

0 commit comments

Comments
 (0)