Cargo.toml (693B)
1 [package] 2 name = "authrs_bridge" 3 version = "0.1.0" 4 edition = "2021" 5 authors = ["Martin Sirringhaus", "John Schanck"] 6 7 [dependencies] 8 authenticator = { version = "0.5", features = ["gecko"] } 9 base64 = "^0.22" 10 cstr = "0.2" 11 log = "0.4" 12 moz_task = { path = "../../../xpcom/rust/moz_task" } 13 nserror = { path = "../../../xpcom/rust/nserror" } 14 nsstring = { path = "../../../xpcom/rust/nsstring" } 15 rand = "0.8" 16 serde = { version = "1", features = ["derive"] } 17 serde_cbor = "0.11" 18 serde_json = "1.0" 19 static_prefs = { path = "../../../modules/libpref/init/static_prefs" } 20 thin-vec = { version = "0.2.1", features = ["gecko-ffi"] } 21 xpcom = { path = "../../../xpcom/rust/xpcom" } 22 23 [features] 24 fuzzing = []