1[package] 2name = "vnd-atproto" 3version = "0.0.1" 4authors = ["Edouard Paris <m@edouard.paris>"] 5edition = "2024" 6description = "Vanadium app for atproto plc" 7 8[package.metadata.vapp] 9name = "Atproto" 10stack_size = 65536 11 12[dependencies] 13postcard = { version = "1.1.1", features = ["alloc"] } 14serde_ipld_dagcbor = { git = "http://github.com/edouardparis/serde_ipld_dagcbor", branch = "scopeguard-no-default-features", default-features = false } 15sdk = { package = "vanadium-app-sdk", git = "https://github.com/LedgerHQ/vanadium"} 16common = { package = "vnd-atproto-common", path = "common" } 17base58 = "0.2.0" 18serde = { version = "1.0", default-features = false, features = ["alloc"] } 19 20[patch.crates-io] 21cid = { git = "https://github.com/edouardparis/rust-cid", branch = "fix-dep-serde_bytes-features" } 22 23[dev-dependencies] 24hex-literal = "0.4.1" 25 26[profile.release] 27opt-level = 3 28lto = true 29 30[workspace] 31resolver = "2" 32members = [ 33 ".", 34 "common", 35 "client", 36 "cli", 37]