Skip to content

Commit

Permalink
🎉 Publish 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oscartbeaumont committed Dec 3, 2024
1 parent 0096763 commit 0e4701b
Show file tree
Hide file tree
Showing 12 changed files with 307 additions and 300 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rspc"
description = "A blazing fast and easy to use TRPC server for Rust."
version = "0.3.0"
version = "0.3.1"
authors = ["Oscar Beaumont <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions crates/axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rspc-axum"
description = "Axum adapter for rspc"
version = "0.2.0"
version = "0.2.1"
authors = ["Oscar Beaumont <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -20,7 +20,7 @@ default = []
ws = ["dep:tokio", "axum/ws"]

[dependencies]
rspc = { version = "0.3.0", path = "../.." }
rspc = { version = "0.3.1", path = "../.." }
axum = "0.7.9"
serde_json = "1.0.133"

Expand Down
4 changes: 2 additions & 2 deletions crates/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rspc-tauri"
description = "Tauri adapter for rspc"
version = "0.1.0"
version = "0.1.1"
authors = ["Oscar Beaumont <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"]

# TODO: Cleanup deps
[dependencies]
rspc = { version = "0.3.0", path = "../.." }
rspc = { version = "0.3.1", path = "../.." }
specta = { version = "1.0.5", features = ["serde", "typescript"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
Expand Down
84 changes: 42 additions & 42 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"name": "@rspc/client",
"version": "0.3.0",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "tsup"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"clean": true,
"sourcemap": true
}
"name": "@rspc/client",
"version": "0.3.1",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "tsup"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"clean": true,
"sourcemap": true
}
}
9 changes: 6 additions & 3 deletions packages/client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "../tsconfig.json",
"include": ["src/**/*"],
"exclude": ["dist/**/*"]
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src/**/*"],
"exclude": ["dist/**/*"]
}
96 changes: 48 additions & 48 deletions packages/query-core/package.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
{
"name": "@rspc/query-core",
"version": "0.3.0",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "tsup"
},
"dependencies": {
"@tanstack/query-core": "^5.60.6"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@rspc/client": "workspace:*"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"clean": true,
"sourcemap": true
}
"name": "@rspc/query-core",
"version": "0.3.1",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "tsup"
},
"dependencies": {
"@tanstack/query-core": "^5.60.6"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@rspc/client": "workspace:*"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"clean": true,
"sourcemap": true
}
}
9 changes: 6 additions & 3 deletions packages/query-core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "../tsconfig.json",
"include": ["src/**/*"],
"exclude": ["dist/**/*"]
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src/**/*"],
"exclude": ["dist/**/*"]
}
106 changes: 53 additions & 53 deletions packages/react-query/package.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
{
"name": "@rspc/react-query",
"version": "0.3.0",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "tsup"
},
"tsup": {
"entry": [
"src/index.tsx"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"clean": true,
"sourcemap": true
},
"dependencies": {
"@rspc/client": "workspace:*",
"@rspc/query-core": "workspace:*"
},
"devDependencies": {
"@tanstack/react-query": "^5.61.0",
"@types/react": "^18.3.12",
"react": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0"
}
"name": "@rspc/react-query",
"version": "0.3.1",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "tsup"
},
"tsup": {
"entry": [
"src/index.tsx"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"clean": true,
"sourcemap": true
},
"dependencies": {
"@rspc/client": "workspace:*",
"@rspc/query-core": "workspace:*"
},
"devDependencies": {
"@tanstack/react-query": "^5.61.0",
"@types/react": "^18.3.12",
"react": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0"
}
}
13 changes: 7 additions & 6 deletions packages/react-query/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx",
},
"include": ["src/**/*"],
"exclude": ["dist/**/*"]
"extends": "../tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx",
"outDir": "dist"
},
"include": ["src/**/*"],
"exclude": ["dist/**/*"]
}
Loading

0 comments on commit 0e4701b

Please sign in to comment.