anki/rslib
Kerrick Staley 1eac36c5d7 Add comment explaining why sfld column has type integer
The `notes.sfld` column in the `collection.anki2` database has type `integer`, even though it contains text. This is [something SQLite allows](https://dba.stackexchange.com/questions/106364/text-string-stored-in-sqlite-integer-column) and was done to allow integer values to sort numerically. Add a comment explaining this.
2021-01-25 18:39:59 +08:00
..
.cargo initial Bazel conversion 2020-11-01 14:26:58 +10:00
build don't pass BUILDINFO into build script 2020-12-21 16:04:29 +10:00
cargo update Rust deps; add async_trait 2021-01-11 19:19:45 +10:00
src Add comment explaining why sfld column has type integer 2021-01-25 18:39:59 +08:00
templates migrate card stats to backend 2020-06-15 17:22:16 +10:00
tests/support initial Bazel conversion 2020-11-01 14:26:58 +10:00
.clang-format add .clang-format so VS Code preserves formatting style on .proto save 2021-01-12 18:47:08 +10:00
.gitignore initial Bazel conversion 2020-11-01 14:26:58 +10:00
backend.proto minor wording tweak: GraphsPreferences -> GraphPreferences 2021-01-23 20:47:45 +10:00
BUILD.bazel allow normal sync tests to run offline 2021-01-12 18:47:08 +10:00
Cargo.toml update Rust deps; add async_trait 2021-01-11 19:19:45 +10:00
clang_format.bzl add clang-format for backend.proto formatting 2021-01-09 17:08:50 +10:00
proto_format.py fix protobuf formatting adding carriage returns on Windows 2021-01-10 08:48:20 +10:00
README.md add some code editing/completion docs 2020-12-16 14:16:08 +10:00
rustfmt.bzl initial Bazel conversion 2020-11-01 14:26:58 +10:00

Anki's Rust code.

backend.proto stores the interfaces used to communicate backend messages between Rust, Python and TypeScript.