Created
February 10, 2025 00:33
-
-
Save cljoly/69cd69e67f9c3b8628e86e37f250aba2 to your computer and use it in GitHub Desktop.
Diff of tokio-rusqlite-0.6.0 and tokio-rusqlite-new-0.7.0. This excludes changes made to Cargo.lock, because those are ignored when pulling the library as a dependency.
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
diff '--color=auto' -x Cargo.lock -d tokio-rusqlite-0.6.0/Cargo.toml tokio-rusqlite-new-0.7.0/Cargo.toml | |
14,15c14,15 | |
< name = "tokio-rusqlite" | |
< version = "0.6.0" | |
--- | |
> name = "tokio-rusqlite-new" | |
> version = "0.7.0" | |
16a17 | |
> "xuxiaocheng <2762267080@qq.com>", | |
20a22 | |
> autolib = false | |
26,27c28 | |
< homepage = "https://github.com/programatik29/tokio-rusqlite" | |
< documentation = "https://docs.rs/tokio-rusqlite" | |
--- | |
> documentation = "https://docs.rs/tokio-rusqlite-new" | |
39c40 | |
< repository = "https://github.com/programatik29/tokio-rusqlite" | |
--- | |
> repository = "https://github.com/xuxiaocheng0201/tokio-rusqlite" | |
42c43 | |
< name = "tokio_rusqlite" | |
--- | |
> name = "tokio_rusqlite_new" | |
54c55 | |
< version = "0.5" | |
--- | |
> version = "~0.5" | |
57c58 | |
< version = "0.32" | |
--- | |
> version = "~0.33" | |
60c61 | |
< version = "1" | |
--- | |
> version = "^1.43" | |
64c65 | |
< version = "0.32" | |
--- | |
> version = "~0.33" | |
68c69 | |
< version = "1" | |
--- | |
> version = "^1.43" | |
diff '--color=auto' -x Cargo.lock -d tokio-rusqlite-0.6.0/Cargo.toml.orig tokio-rusqlite-new-0.7.0/Cargo.toml.orig | |
2,4c2,4 | |
< name = "tokio-rusqlite" | |
< version = "0.6.0" | |
< authors = ["Programatik <programatik29@gmail.com>", "Adi Salimgereev <adisalimgereev@gmail.com>"] | |
--- | |
> name = "tokio-rusqlite-new" | |
> version = "0.7.0" | |
> authors = ["xuxiaocheng <2762267080@qq.com>", "Programatik <programatik29@gmail.com>", "Adi Salimgereev <adisalimgereev@gmail.com>"] | |
7,9c7,8 | |
< documentation = "https://docs.rs/tokio-rusqlite" | |
< homepage = "https://github.com/programatik29/tokio-rusqlite" | |
< repository = "https://github.com/programatik29/tokio-rusqlite" | |
--- | |
> documentation = "https://docs.rs/tokio-rusqlite-new" | |
> repository = "https://github.com/xuxiaocheng0201/tokio-rusqlite" | |
18,20c17,19 | |
< crossbeam-channel = "0.5" | |
< rusqlite = "0.32" | |
< tokio = { version = "1", features = ["sync"] } | |
--- | |
> crossbeam-channel = "~0.5" | |
> rusqlite = "~0.33" | |
> tokio = { version = "^1.43", features = ["sync"] } | |
23,24c22,23 | |
< rusqlite = { version = "0.32", features = ["bundled"] } | |
< tokio = { version = "1", features = ["full"] } | |
--- | |
> rusqlite = { version = "~0.33", features = ["bundled"] } | |
> tokio = { version = "^1.43", features = ["full"] } | |
diff '--color=auto' -x Cargo.lock -d tokio-rusqlite-0.6.0/.cargo_vcs_info.json tokio-rusqlite-new-0.7.0/.cargo_vcs_info.json | |
3c3 | |
< "sha1": "168e9c47fd6c7c9f8032b660f62084e16ade7bac" | |
--- | |
> "sha1": "4fe5adffbf51acd1abd0ae1af0e3b5b61b74be60" | |
diff '--color=auto' -x Cargo.lock -d tokio-rusqlite-0.6.0/CHANGELOG.md tokio-rusqlite-new-0.7.0/CHANGELOG.md | |
10a11,14 | |
> # 0.7.0 (7 Feb 2025) | |
> | |
> - **updated:** To latest [rusqlite] version (`0.33`). | |
> | |
Common subdirectories: tokio-rusqlite-0.6.0/examples and tokio-rusqlite-new-0.7.0/examples | |
Only in tokio-rusqlite-0.6.0/: .github | |
diff '--color=auto' -x Cargo.lock -d tokio-rusqlite-0.6.0/.gitignore tokio-rusqlite-new-0.7.0/.gitignore | |
1,2c1,12 | |
< /target | |
< /Cargo.lock | |
--- | |
> /* | |
> | |
> !/.gitignore | |
> !/Cargo.toml | |
> !/Cargo.lock | |
> | |
> !/src | |
> !/examples | |
> | |
> !/README.md | |
> !/CHANGELOG.md | |
> !/LICENSE | |
diff '--color=auto' -x Cargo.lock -d tokio-rusqlite-0.6.0/LICENSE tokio-rusqlite-new-0.7.0/LICENSE | |
0a1,2 | |
> MIT License | |
> | |
1a4 | |
> Copyright (c) 2025 xuxiaocheng0201 | |
diff '--color=auto' -x Cargo.lock -d tokio-rusqlite-0.6.0/README.md tokio-rusqlite-new-0.7.0/README.md | |
5c5 | |
< # tokio-rusqlite | |
--- | |
> # tokio-rusqlite-new | |
7a8,9 | |
> | |
> This is a fork of [tokio-rusqlite](https://github.com/programatik29/tokio-rusqlite). | |
Common subdirectories: tokio-rusqlite-0.6.0/src and tokio-rusqlite-new-0.7.0/src |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment