2019-12-23 05:42:14 +01:00
[ package ]
2020-01-02 10:43:19 +01:00
name = "anki"
2020-11-02 09:17:26 +01:00
version = "0.0.0"
2020-04-03 00:44:59 +02:00
authors = [ "Ankitects Pty Ltd and contributors" ]
2022-11-09 10:47:06 +01:00
build = "build/main.rs"
edition = "2021"
2020-01-02 10:43:19 +01:00
license = "AGPL-3.0-or-later"
2020-04-02 04:01:48 +02:00
description = "Anki's Rust library code"
2020-11-01 05:26:58 +01:00
[ lib ]
name = "anki"
path = "src/lib.rs"
2019-12-24 04:33:44 +01:00
2021-12-17 10:04:42 +01:00
[ features ]
bench = [ "criterion" ]
[ [ bench ] ]
name = "benchmark"
harness = false
required-features = [ "bench" ]
2020-11-02 09:17:26 +01:00
# After updating anything below, run ../cargo/update.py
[ build-dependencies ]
2022-09-24 04:39:21 +02:00
prost-build = "0.11.1"
2022-10-17 01:57:36 +02:00
which = "4.3.0"
2020-11-02 09:17:26 +01:00
[ dev-dependencies ]
2022-09-24 04:39:21 +02:00
env_logger = "0.9.1"
tokio = { version = "1.21" , features = [ "macros" ] }
2020-11-02 09:17:26 +01:00
2019-12-24 04:33:44 +01:00
[ dependencies ]
2022-11-09 10:47:06 +01:00
anki_i18n = { path = "i18n" }
2021-04-27 15:11:22 +02:00
2022-11-09 10:47:06 +01:00
csv = { git = "https://github.com/ankitects/rust-csv.git" , rev = "1c9d3aab6f79a7d815c69f925a46a4590c115f90" }
pct-str = { git = "https://github.com/timothee-haudebourg/pct-str.git" , rev = "4adccd8d4a222ab2672350a102f06ae832a0572d" }
reqwest = { git = "https://github.com/ankitects/reqwest.git" , rev = "7591444614de02b658ddab125efba7b2bb4e2335" , default-features = false , features = [ "json" , "socks" , "stream" , "multipart" , # the Bazel build scripts separate these out by platform
"native-tls" , "rustls-tls" , "rustls-tls-webpki-roots" , "rustls-tls-native-roots" , ] }
2022-02-25 07:30:59 +01:00
2022-11-09 10:47:06 +01:00
# pinned as any changes could invalidate sqlite indexes
unicase = "=2.6.0"
2021-03-26 00:40:41 +01:00
2022-09-24 04:39:21 +02:00
criterion = { version = "0.4.0" , optional = true }
2021-12-17 10:04:42 +01:00
2022-11-09 10:47:06 +01:00
ammonia = "3.2.1"
async-trait = "0.1.57"
2022-09-24 04:39:21 +02:00
blake3 = "1.3.1"
bytes = "1.2.1"
chrono = "0.4.22"
coarsetime = "0.1.22"
2022-11-09 10:47:06 +01:00
convert_case = "0.6.0"
dissimilar = "1.0.4"
2022-09-24 04:39:21 +02:00
flate2 = "1.0.24"
2021-10-02 12:42:03 +02:00
fluent = "0.16.0"
2022-09-24 04:39:21 +02:00
fluent-bundle = "0.15.2"
2022-11-09 10:47:06 +01:00
fnv = "1.0.7"
2022-09-24 04:39:21 +02:00
futures = "0.3.24"
2021-06-25 07:35:25 +02:00
hex = "0.4.3"
2020-01-20 10:12:34 +01:00
htmlescape = "0.3.1"
2022-11-09 10:47:06 +01:00
id_tree = "1.8.0"
2021-06-25 07:35:25 +02:00
intl-memoizer = "0.5.1"
2022-09-24 04:39:21 +02:00
itertools = "0.10.5"
2020-11-02 09:17:26 +01:00
lazy_static = "1.4.0"
2022-11-09 10:47:06 +01:00
nom = "7.1.1"
2022-09-24 04:39:21 +02:00
num-integer = "0.1.45"
2022-11-09 10:47:06 +01:00
num_cpus = "1.13.1"
num_enum = "0.5.7"
2022-09-24 04:39:21 +02:00
once_cell = "1.15.0"
pin-project = "1.0.12"
2022-11-09 10:47:06 +01:00
proc-macro-nested = "0.1.7"
2022-09-24 04:39:21 +02:00
prost = "0.11.0"
2022-11-09 10:47:06 +01:00
pulldown-cmark = "0.9.2"
2022-09-24 04:39:21 +02:00
rand = "0.8.5"
regex = "1.6.0"
rusqlite = { version = "0.28.0" , features = [ "trace" , "functions" , "collation" , "bundled" ] }
2020-11-02 09:17:26 +01:00
scopeguard = "1.1.0"
2022-09-24 04:39:21 +02:00
serde = "1.0.145"
2022-11-09 10:47:06 +01:00
serde-aux = "4.0.0"
2022-09-24 04:39:21 +02:00
serde_derive = "1.0.145"
serde_json = "1.0.85"
serde_repr = "0.1.9"
2020-07-12 03:38:25 +02:00
serde_tuple = "0.5.0"
2020-11-02 09:17:26 +01:00
sha1 = "0.6.0"
2021-06-25 08:22:21 +02:00
slog = { version = "2.7.0" , features = [ "max_level_trace" , "release_max_level_debug" ] }
2021-10-02 12:42:03 +02:00
slog-async = "2.7.0"
2020-02-29 10:50:15 +01:00
slog-envlogger = "2.2.0"
2022-11-09 10:47:06 +01:00
slog-term = "2.9.0"
snafu = { version = "0.7.2" , features = [ "backtraces" ] }
strum = { version = "0.24.1" , features = [ "derive" ] }
2022-09-24 04:39:21 +02:00
tempfile = "3.3.0"
2022-11-09 10:47:06 +01:00
tokio = { version = "1.21" , features = [ "fs" , "rt-multi-thread" ] }
tokio-util = { version = "0.7.4" , features = [ "io" ] }
2021-06-25 08:22:21 +02:00
unic-langid = { version = "0.9.0" , features = [ "macros" ] }
2022-11-09 10:47:06 +01:00
unic-ucd-category = "0.9.0"
2022-09-24 04:39:21 +02:00
unicode-normalization = "0.1.22"
2020-11-02 09:17:26 +01:00
utime = "0.3.1"
2022-09-24 04:39:21 +02:00
zip = { version = "0.6.2" , default-features = false , features = [ "deflate" , "time" ] }
2022-11-09 10:47:06 +01:00
zstd = { version = "0.11.2" , features = [ "zstdmt" ] }