mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
commit
0f33b120eb
@ -11,6 +11,15 @@ keywords = ["sqlite", "database", "ffi"]
|
|||||||
license = "MIT"
|
license = "MIT"
|
||||||
categories = ["database"]
|
categories = ["database"]
|
||||||
|
|
||||||
|
exclude = [
|
||||||
|
"/.github/*",
|
||||||
|
"/.gitattributes",
|
||||||
|
"/appveyor.yml",
|
||||||
|
"/Changelog.md",
|
||||||
|
"/clippy.toml",
|
||||||
|
"/codecov.yml",
|
||||||
|
]
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
appveyor = { repository = "rusqlite/rusqlite" }
|
appveyor = { repository = "rusqlite/rusqlite" }
|
||||||
codecov = { repository = "rusqlite/rusqlite" }
|
codecov = { repository = "rusqlite/rusqlite" }
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
git describe --exact-match --tags $(git log -n1 --pretty='%h') >/dev/null 2>&1
|
|
||||||
if [[ $? != 0 ]]; then
|
|
||||||
echo "Should not publish tags from an untagged commit!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $(git rev-parse --show-toplevel)
|
|
||||||
rm -rf target/doc/
|
|
||||||
rustup run nightly cargo doc --no-deps --features "backup blob chrono functions limits load_extension serde_json trace"
|
|
||||||
echo '<meta http-equiv=refresh content=0;url=rusqlite/index.html>' > target/doc/index.html
|
|
||||||
ghp-import target/doc
|
|
||||||
git push origin gh-pages:gh-pages
|
|
Loading…
Reference in New Issue
Block a user