529d7a4ee4
Closes #188 # Conflicts: # Cargo.lock # crates/arr-subs/Cargo.toml # crates/arr-subs/src/error.rs # crates/arr-subs/src/lib.rs
39 lines
983 B
TOML
39 lines
983 B
TOML
[package]
|
|
name = "arr-subs"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[features]
|
|
default = []
|
|
# Translation backends, one feature each (DESIGN.md §15). The backends
|
|
# themselves land in #191, #192 and #193; the switches exist now so the crate
|
|
# they will hang off is already shaped for them, and so a build can be told
|
|
# which ones to compile in before any of them exists.
|
|
translate-openai = []
|
|
translate-deepl = []
|
|
translate-google = []
|
|
translate-command = []
|
|
|
|
[dependencies]
|
|
arr-core.workspace = true
|
|
arr-parse.workspace = true
|
|
chardetng.workspace = true
|
|
encoding_rs.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
zip.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
wiremock.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|