A better Rust ATProto crate
1[package]
2name = "jacquard-codegen-tests"
3description = "Compile-time validation for Pretty and Macro codegen modes"
4edition.workspace = true
5version = "0.0.0"
6publish = false
7license.workspace = true
8
9[dependencies]
10jacquard-common = { path = "../jacquard-common" }
11jacquard-derive = { path = "../jacquard-derive" }
12jacquard-lexicon = { path = "../jacquard-lexicon" }
13serde = { workspace = true }
14thiserror = { workspace = true }
15miette = { workspace = true }
16
17[features]
18default = ["app_bsky", "com_atproto", "test_collision", "test_ns1", "test_ns2", "test_ns3"]
19app_bsky = ["com_atproto"]
20com_atproto = []
21test_collision = []
22test_ns1 = []
23test_ns2 = ["test_ns1"]
24test_ns3 = ["test_ns1"]
25
26[build-dependencies]
27jacquard-lexicon = { path = "../jacquard-lexicon", features = ["codegen"] }