application-services/examples/autofill-utils/Cargo.toml

28 строки
1003 B
TOML
Исходник Постоянная ссылка Обычный вид История

2020-09-19 01:49:22 +03:00
[package]
name = "example-autofill-utils"
version = "0.1.0"
authors = ["sync-team@mozilla.com"]
license = "MPL-2.0"
edition = "2021"
2020-09-19 01:49:22 +03:00
publish = false
[[example]]
name = "autofill-utils"
path = "src/autofill-utils.rs"
[dev-dependencies]
anyhow = "1.0"
autofill = { path = "../../components/autofill" }
2020-09-19 01:49:22 +03:00
cli-support = { path = "../cli-support" }
fxa-client = { path = "../../components/fxa-client" }
error-support = { path = "../../components/support/error" }
interrupt-support = { path = "../../components/support/interrupt" } # XXX - should be removed once we do interrupts correctly!
log = "0.4"
rusqlite = { workspace = true, features = ["functions", "bundled", "serde_json", "unlock_notify"]}
serde_json = "1"
sql-support = { path = "../../components/support/sql" }
2020-09-19 01:49:22 +03:00
structopt = "0.3"
sync-guid = { path = "../../components/support/guid", features = ["rusqlite_support", "random"] }
sync15 = { path = "../../components/sync15" }
viaduct-reqwest = { path = "../../components/support/viaduct-reqwest" }