anki/rslib/Cargo.toml

79 lines
2.2 KiB
TOML
Raw Normal View History

2019-12-23 05:42:14 +01:00
[package]
name = "anki"
2020-05-18 04:50:20 +02:00
version = "2.1.28" # automatically updated
2019-12-23 05:42:14 +01:00
edition = "2018"
authors = ["Ankitects Pty Ltd and contributors"]
license = "AGPL-3.0-or-later"
description = "Anki's Rust library code"
readme = "README.md"
[dependencies]
# pinned as any changes could invalidate sqlite indexes
unicase = "=2.6.0"
2020-07-12 03:38:25 +02:00
nom = "5.1.2"
failure = "0.1.8"
2020-02-01 10:05:22 +01:00
prost = "0.6.1"
2020-07-12 03:38:25 +02:00
bytes = "0.5.5"
chrono = "0.4.13"
lazy_static = "1.4.0"
2020-07-12 03:38:25 +02:00
regex = "1.3.9"
hex = "0.4.2"
blake3 = "0.3.5"
htmlescape = "0.3.1"
sha1 = "0.6.0"
2020-07-12 03:38:25 +02:00
unicode-normalization = "0.1.13"
tempfile = "3.1.0"
2020-07-12 03:38:25 +02:00
serde = "1.0.114"
serde_json = "1.0.56"
tokio = { version = "0.2.21", features = ["fs", "rt-threaded"] }
2020-07-12 03:38:25 +02:00
serde_derive = "1.0.114"
zip = "0.5.6"
serde_tuple = "0.5.0"
coarsetime = { git = "https://github.com/ankitects/rust-coarsetime.git", branch="old-mac-compat" }
2020-07-12 03:38:25 +02:00
utime = "0.3.1"
serde-aux = "0.6.1"
unic-langid = { version = "0.8.0", features = ["macros"] }
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" }
num-format = "0.4.0"
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_debug"] }
2020-07-12 03:38:25 +02:00
slog-term = "2.6.0"
slog-async = "2.5.0"
slog-envlogger = "2.2.0"
2020-07-12 03:38:25 +02:00
serde_repr = "0.1.6"
num_enum = "0.5.0"
futures = "0.3.5"
rand = "0.7.3"
2020-07-12 03:38:25 +02:00
num-integer = "0.1.43"
itertools = "0.9.0"
2020-07-12 03:38:25 +02:00
flate2 = "1.0.16"
pin-project = "0.4.22"
async-compression = { version = "0.3.5", features = ["stream", "gzip"] }
askama = "0.10.1"
2020-03-24 05:53:33 +01:00
[target.'cfg(target_vendor="apple")'.dependencies.rusqlite]
2020-05-16 11:49:08 +02:00
version = "0.23.1"
2020-03-24 05:53:33 +01:00
features = ["trace", "functions", "collation"]
2020-03-24 05:53:33 +01:00
[target.'cfg(not(target_vendor="apple"))'.dependencies.rusqlite]
2020-05-16 11:49:08 +02:00
version = "0.23.1"
2020-03-24 05:53:33 +01:00
features = ["trace", "functions", "collation", "bundled"]
[target.'cfg(linux)'.dependencies]
2020-07-12 03:38:25 +02:00
reqwest = { version = "0.10.6", features = ["json", "socks", "stream", "native-tls-vendored"] }
[target.'cfg(not(linux))'.dependencies]
2020-07-12 03:38:25 +02:00
reqwest = { version = "0.10.6", features = ["json", "socks", "stream" ] }
[build-dependencies]
prost-build = "0.6.1"
2020-07-12 03:38:25 +02:00
fluent-syntax = "0.9.3"
2020-05-27 11:32:05 +02:00
[dev-dependencies]
env_logger = "0.7.1"
2020-06-11 05:26:14 +02:00
[patch.crates-io]
hyper = { git = "https://github.com/ankitects/hyper.git", branch = "gai-cancel-panic" }