diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /services/fxaccounts/rust-bridge/firefox-accounts-bridge/Cargo.toml | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'services/fxaccounts/rust-bridge/firefox-accounts-bridge/Cargo.toml')
-rw-r--r-- | services/fxaccounts/rust-bridge/firefox-accounts-bridge/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/services/fxaccounts/rust-bridge/firefox-accounts-bridge/Cargo.toml b/services/fxaccounts/rust-bridge/firefox-accounts-bridge/Cargo.toml new file mode 100644 index 0000000000..571cd94047 --- /dev/null +++ b/services/fxaccounts/rust-bridge/firefox-accounts-bridge/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "firefox-accounts-bridge" +version = "0.1.0" +authors = ["The Synced Clients Integrations team <sync-team@mozilla.com>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +atomic_refcell = "0.1" +cstr = "0.2" +libc = "0.2" +once_cell = "1" +paste = "0.1" +serde = "1" +serde_json = "1" +url = "2.1" +moz_task = { path = "../../../../xpcom/rust/moz_task" } +nserror = { path = "../../../../xpcom/rust/nserror" } +nsstring = { path = "../../../../xpcom/rust/nsstring" } +xpcom = { path = "../../../../xpcom/rust/xpcom" } +storage_variant = { path = "../../../../storage/variant" } +thin-vec = { version = "0.2.1", features = ["gecko-ffi"] } +fxa-client = { git = "https://github.com/mozilla/application-services", rev = "8a576fbe79199fa8664f64285524017f74ebcc5f", features = ["gecko"] } |