Skip to content

Instantly share code, notes, and snippets.

@cljoly
Created February 10, 2025 00:33
Show Gist options
  • Select an option

  • Save cljoly/69cd69e67f9c3b8628e86e37f250aba2 to your computer and use it in GitHub Desktop.

Select an option

Save cljoly/69cd69e67f9c3b8628e86e37f250aba2 to your computer and use it in GitHub Desktop.

Revisions

  1. cljoly created this gist Feb 10, 2025.
    119 changes: 119 additions & 0 deletions tokio-rusqlite-new.diff
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,119 @@
    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 <[email protected]>",
    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 <[email protected]>", "Adi Salimgereev <[email protected]>"]
    ---
    > name = "tokio-rusqlite-new"
    > version = "0.7.0"
    > authors = ["xuxiaocheng <[email protected]>", "Programatik <[email protected]>", "Adi Salimgereev <[email protected]>"]
    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