28 строки
1003 B
TOML
28 строки
1003 B
TOML
[package]
|
|
name = "example-autofill-utils"
|
|
version = "0.1.0"
|
|
authors = ["sync-team@mozilla.com"]
|
|
license = "MPL-2.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[example]]
|
|
name = "autofill-utils"
|
|
path = "src/autofill-utils.rs"
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
autofill = { path = "../../components/autofill" }
|
|
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" }
|
|
structopt = "0.3"
|
|
sync-guid = { path = "../../components/support/guid", features = ["rusqlite_support", "random"] }
|
|
sync15 = { path = "../../components/sync15" }
|
|
viaduct-reqwest = { path = "../../components/support/viaduct-reqwest" }
|