wip
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]
13k256 = { version = "0.13.4", default-features = false, features = ["alloc", "ecdsa-core"] }
14cid = { version = "0.11.1", default-features = false, features = ['alloc'] }
15postcard = { version = "1.1.1", features = ["alloc"] }
16serde_ipld_dagcbor = { git = "http://github.com/ipld/serde_ipld_dagcbor", branch = "master", default-features = false }
17sdk = { package = "vanadium-app-sdk", git = "https://github.com/LedgerHQ/vanadium"}
18common = { package = "vnd-atproto-common", path = "common" }
19base58 = "0.2.0"
20serde = { version = "1.0", default-features = false, features = ["alloc"] }
21
22[patch.crates-io]
23cid = { git = "https://github.com/multiformats/rust-cid", branch = "master" }
24
25[dev-dependencies]
26hex-literal = "0.4.1"
27
28[profile.release]
29opt-level = 3
30lto = true
31
32[workspace]
33resolver = "2"
34members = [
35 ".",
36 "common",
37 "client",
38 "cli",
39]