-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove improper categories * make the generated builder infallible, but lose new/default. * remove use/import of traits. * absorb QueryFields into Entity (fewer use statements for users) * remove node/relation shorthand attributes * rename attr: stamps -> timestamps * update examples, test, clippy * build and test the workspace * rename ci action so its more descriptive in the badge * rename Entity to FieldSet, so it's more clear it is more abstract * wip changing readme * add/move scripts * rename as_query* to to_query* because it's not free * add as_query_fields and as_query_obj, static query string that ignores timestamps * rename fn * write a bunch of test fragments as includes * fix var used * upgrade and sort deps * update devcontainer to use my prebuilt rust image * update scripts * fix neo4rs usage (breaking in 0.7), run ./fix.sh * run ./fix.sh * prevent clippy from removing pub use that is actually used in the tests. * need to add the 1.0 tag to dockerfile (no latest) * merge changes from 'breaking 0.7' branch * update readmes, changelog, and bump version * bump macros version
- Loading branch information
Showing
60 changed files
with
1,123 additions
and
686 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 +1 @@ | ||
FROM mcr.microsoft.com/devcontainers/rust:bookworm | ||
FROM jifalops/rust:1.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
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,14 +1,8 @@ | ||
# Ensure devcontainer user owns the project directory | ||
sudo chown -R vscode:vscode /cypher-dto | ||
sudo chown -R developer:developer $PROJECT_ROOT | ||
|
||
# Remember history on the local machine | ||
ln -s /cypher-dto/.devcontainer/.bash_history ~/.bash_history | ||
ln -s $PROJECT_ROOT/.devcontainer/.bash_history ~/.bash_history | ||
|
||
# Install dotfiles | ||
gh repo clone dotfiles ~/dotfiles && ~/dotfiles/install.sh | ||
|
||
# rustup and cargo bash completion. | ||
sudo apt-get update -qq && sudo apt-get install -y -qq --no-install-recommends bash-completion \ | ||
&& mkdir -p ~/.local/share/bash-completion/completions \ | ||
&& rustup completions bash > ~/.local/share/bash-completion/completions/rustup \ | ||
&& rustup completions bash cargo > ~/.local/share/bash-completion/completions/cargo |
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,21 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build | ||
run: cargo build --verbose | ||
- name: Run tests | ||
run: cargo test --verbose |
This file was deleted.
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
Oops, something went wrong.