-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0096763
commit 0e4701b
Showing
12 changed files
with
307 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/**/*"] | ||
} |
Oops, something went wrong.