2019-12-23 05:42:14 +01:00
|
|
|
[package]
|
2020-01-02 10:43:19 +01:00
|
|
|
name = "anki"
|
2020-04-02 04:01:48 +02:00
|
|
|
version = "2.1.24" # automatically updated
|
2019-12-23 05:42:14 +01:00
|
|
|
edition = "2018"
|
2020-04-03 00:44:59 +02:00
|
|
|
authors = ["Ankitects Pty Ltd and contributors"]
|
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"
|
|
|
|
readme = "README.md"
|
2019-12-24 04:33:44 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-24 05:05:15 +01:00
|
|
|
nom = "5.0.1"
|
2020-03-06 06:08:58 +01:00
|
|
|
failure = "0.1.7"
|
2020-02-01 10:05:22 +01:00
|
|
|
prost = "0.6.1"
|
|
|
|
bytes = "0.5.4"
|
2019-12-27 09:14:19 +01:00
|
|
|
chrono = "0.4.10"
|
2020-01-10 05:59:29 +01:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
regex = "1.3.3"
|
2020-01-11 00:35:41 +01:00
|
|
|
hex = "0.4.0"
|
2020-02-27 04:50:48 +01:00
|
|
|
blake3 = "0.2.1"
|
2020-01-20 10:12:34 +01:00
|
|
|
htmlescape = "0.3.1"
|
2020-01-28 11:52:10 +01:00
|
|
|
sha1 = "0.6.0"
|
|
|
|
unicode-normalization = "0.1.12"
|
|
|
|
tempfile = "3.1.0"
|
2020-02-01 10:05:22 +01:00
|
|
|
serde = "1.0.104"
|
|
|
|
serde_json = "1.0.45"
|
|
|
|
tokio = "0.2.11"
|
|
|
|
serde_derive = "1.0.104"
|
|
|
|
zip = "0.5.4"
|
|
|
|
serde_tuple = "0.4.0"
|
2020-02-17 08:55:39 +01:00
|
|
|
coarsetime = "=0.1.11"
|
2020-02-09 01:17:29 +01:00
|
|
|
utime = "0.2.1"
|
2020-02-10 05:19:39 +01:00
|
|
|
serde-aux = "0.6.1"
|
2020-02-20 01:42:16 +01:00
|
|
|
unic-langid = { version = "0.8.0", features = ["macros"] }
|
2020-02-25 03:57:35 +01:00
|
|
|
fluent = { git = "https://github.com/ankitects/fluent-rs.git", branch="32bit-panic" }
|
|
|
|
intl-memoizer = { git = "https://github.com/ankitects/fluent-rs.git", branch="32bit-panic" }
|
2020-02-20 01:42:16 +01:00
|
|
|
num-format = "0.4.0"
|
2020-02-29 10:50:15 +01:00
|
|
|
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_debug"] }
|
|
|
|
slog-term = "2.5.0"
|
|
|
|
slog-async = "2.4.0"
|
|
|
|
slog-envlogger = "2.2.0"
|
2020-03-17 03:33:29 +01:00
|
|
|
serde_repr = "0.1.5"
|
|
|
|
num_enum = "0.4.2"
|
2020-03-21 03:40:20 +01:00
|
|
|
unicase = "2.6.0"
|
2020-04-01 01:49:25 +02:00
|
|
|
futures = "0.3.4"
|
2019-12-24 04:33:44 +01:00
|
|
|
|
2020-03-24 05:53:33 +01:00
|
|
|
# pinned until rusqlite 0.22 comes out
|
|
|
|
[target.'cfg(target_vendor="apple")'.dependencies.rusqlite]
|
|
|
|
git = "https://github.com/ankitects/rusqlite.git"
|
|
|
|
branch="nulsafe-text"
|
|
|
|
features = ["trace", "functions", "collation"]
|
2020-02-05 06:01:40 +01:00
|
|
|
|
2020-03-24 05:53:33 +01:00
|
|
|
[target.'cfg(not(target_vendor="apple"))'.dependencies.rusqlite]
|
|
|
|
git = "https://github.com/ankitects/rusqlite.git"
|
|
|
|
branch="nulsafe-text"
|
|
|
|
features = ["trace", "functions", "collation", "bundled"]
|
2020-02-05 06:01:40 +01:00
|
|
|
|
|
|
|
[target.'cfg(linux)'.dependencies]
|
|
|
|
reqwest = { version = "0.10.1", features = ["json", "native-tls-vendored"] }
|
|
|
|
|
|
|
|
[target.'cfg(not(linux))'.dependencies]
|
|
|
|
reqwest = { version = "0.10.1", features = ["json"] }
|
|
|
|
|
2019-12-24 04:33:44 +01:00
|
|
|
[build-dependencies]
|
2020-02-27 04:48:16 +01:00
|
|
|
prost-build = "0.6.1"
|
2020-02-23 03:21:12 +01:00
|
|
|
fluent-syntax = "0.9.2"
|
2020-01-02 10:43:19 +01:00
|
|
|
|