Skip to content

Commit 3339277

Browse files
committed
brought the lexicons back in for generation
1 parent 8f30bbf commit 3339277

File tree

647 files changed

+169928
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

647 files changed

+169928
-47
lines changed

Cargo.lock

Lines changed: 30 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ name = "weaver-workspace"
2323
[workspace.dependencies]
2424

2525
serde = { version = "1.0", features = ["derive"] }
26-
26+
bytes = "1.10"
2727
minijinja = { version = "2.9.0", default-features = false }
2828
minijinja-contrib = { version = "2.9.0", default-features = false }
2929
miette = { version = "7.6" }

crates/weaver-api/Cargo.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[package]
2+
name = "weaver-api"
3+
description = "Generated AT Protocol API bindings for Weaver"
4+
edition.workspace = true
5+
version = "0.8.0"
6+
authors.workspace = true
7+
8+
[dependencies]
9+
bytes = { workspace = true, features = ["serde"] }
10+
jacquard-common = { git = "https://tangled.org/@nonbinary.computer/jacquard" }
11+
jacquard-derive = { git = "https://tangled.org/@nonbinary.computer/jacquard" }
12+
jacquard-lexicon = { git = "https://tangled.org/@nonbinary.computer/jacquard", default-features = false }
13+
miette.workspace = true
14+
rustversion = "1.0"
15+
serde.workspace = true
16+
serde_ipld_dagcbor = "0.6"
17+
thiserror.workspace = true
18+
unicode-segmentation = "1.12"
19+
20+
21+
[lints.rust]
22+
# just so that my rust-analyzer shuts up about the module name for 2048.blue's namespace
23+
non_snake_case = "allow"
24+
25+
[features]
26+
default = ["sh_weaver", "com_atproto"]
27+
streaming = ["jacquard-common/websocket"]
28+
29+
# --- generated ---
30+
# Generated namespace features
31+
app_bsky = []
32+
chat_bsky = []
33+
com_atproto = []
34+
sh_weaver = ["app_bsky"]
35+
tools_ozone = ["chat_bsky", "com_atproto"]

0 commit comments

Comments
 (0)