-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from ikatson/desktop
Create a desktop app with Tauri
- Loading branch information
Showing
47 changed files
with
15,400 additions
and
18 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,6 +1,6 @@ | ||
[package] | ||
name = "librqbit" | ||
version = "4.0.0-beta.2" | ||
version = "4.0.0-beta.3" | ||
authors = ["Igor Katson <[email protected]>"] | ||
edition = "2021" | ||
description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it." | ||
|
@@ -24,11 +24,11 @@ rust-tls = ["reqwest/rustls-tls"] | |
[dependencies] | ||
bencode = {path = "../bencode", default-features=false, package="librqbit-bencode", version="2.2.1"} | ||
buffers = {path = "../buffers", package="librqbit-buffers", version = "2.2.1"} | ||
librqbit-core = {path = "../librqbit_core", version = "3.1.0"} | ||
librqbit-core = {path = "../librqbit_core", version = "3.2.0"} | ||
clone_to_owned = {path = "../clone_to_owned", package="librqbit-clone-to-owned", version = "2.2.1"} | ||
peer_binary_protocol = {path = "../peer_binary_protocol", package="librqbit-peer-protocol", version = "3.1.0"} | ||
peer_binary_protocol = {path = "../peer_binary_protocol", package="librqbit-peer-protocol", version = "3.2.0"} | ||
sha1w = {path = "../sha1w", default-features=false, package="librqbit-sha1-wrapper", version="2.2.1"} | ||
dht = {path = "../dht", package="librqbit-dht", version="4.0.0-beta.2"} | ||
dht = {path = "../dht", package="librqbit-dht", version="4.0.0-beta.3"} | ||
|
||
tokio = {version = "1", features = ["macros", "rt-multi-thread"]} | ||
axum = {version = "0.7"} | ||
|
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
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
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,6 +1,6 @@ | ||
[package] | ||
name = "rqbit" | ||
version = "4.0.0-beta.2" | ||
version = "4.0.0-beta.3" | ||
authors = ["Igor Katson <[email protected]>"] | ||
edition = "2021" | ||
description = "A bittorrent command line client and server." | ||
|
@@ -23,8 +23,8 @@ default-tls = ["librqbit/default-tls"] | |
rust-tls = ["librqbit/rust-tls"] | ||
|
||
[dependencies] | ||
librqbit = {path="../librqbit", default-features=false, version = "4.0.0-beta.2"} | ||
dht = {path="../dht", package="librqbit-dht", version="4.0.0-beta.2"} | ||
librqbit = {path="../librqbit", default-features=false, version = "4.0.0-beta.3"} | ||
dht = {path="../dht", package="librqbit-dht", version="4.0.0-beta.3"} | ||
tokio = {version = "1", features = ["macros", "rt-multi-thread"]} | ||
console-subscriber = {version = "0.2", optional = true} | ||
anyhow = "1" | ||
|
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Tauri + React + Typescript | ||
|
||
This template should help get you started developing with Tauri, React and Typescript in Vite. | ||
|
||
## Recommended IDE Setup | ||
|
||
- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>rqbit web 4.0.0-beta.0</title> | ||
<link rel="icon" type="image/svg+xml" href="assets/logo.svg"> | ||
<!-- Include Bootstrap CSS --> | ||
<link rel="stylesheet" href="/src/styles/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="/src/styles/bootstrap-icons.css" /> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.