Skip to content

Commit fb55713

Browse files
committed
Remove apollo-encoder, replaced by apollo-compiler serialization
1 parent 12d2b2b commit fb55713

35 files changed

+3
-7329
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
platform: << parameters.platform >>
116116
- run:
117117
name: Build to wasm target
118-
command: rustup target add wasm32-unknown-unknown && cargo build --package apollo-encoder --package apollo-parser --package apollo-compiler --target wasm32-unknown-unknown
118+
command: rustup target add wasm32-unknown-unknown && cargo build --package apollo-parser --package apollo-compiler --target wasm32-unknown-unknown
119119

120120
test:
121121
parameters:

ARCHITECTURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Architecture
22

3-
This document gives an overview of how various bits of `apollo-rs` work together (and separately). `apollo-rs` is intended to be a workspace of several crates to encapsulate generic GraphQL tooling in Rust. Currently this houses [`apollo-parser`], [`apollo-encoder`] and [`apollo-smith`].
3+
This document gives an overview of how various bits of `apollo-rs` work together (and separately). `apollo-rs` is intended to be a workspace of several crates to encapsulate generic GraphQL tooling in Rust. Currently this houses [`apollo-parser`], [`apollo-compiler`] and [`apollo-smith`].
44

55
## Design Principles
66
1. **Prioritizing developer experience.** Elegant and ergonomic APIs is the
@@ -218,7 +218,7 @@ for definition in document.definitions() {
218218
```
219219

220220
[`apollo-parser`]: https://github.com/apollographql/apollo-rs/tree/main/crates/apollo-parser
221-
[`apollo-encoder`]: https://github.com/apollographql/apollo-rs/tree/main/crates/apollo-encoder
221+
[`apollo-compiler`]: https://github.com/apollographql/apollo-rs/tree/main/crates/apollo-compiler
222222
[`apollo-smith`]: https://github.com/apollographql/apollo-rs/tree/main/crates/apollo-smith
223223
[`rust-analyzer`]: https://github.com/rust-analyzer/rust-analyzer
224224
[`rowan`]: https://github.com/rust-analyzer/rowan

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
resolver = "2"
33
members = [
44
"xtask/",
5-
"crates/apollo-encoder",
65
"crates/apollo-parser",
76
"crates/apollo-compiler",
87
"crates/apollo-smith",

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ projects which need standards-compliant GraphQL tooling written in Rust. The
1515
following crates currently exist:
1616

1717
* [**`apollo-compiler`**](crates/apollo-compiler/) - a library to compile and semantically analyze GraphQL query language.
18-
* [**`apollo-encoder`**](crates/apollo-encoder) - a library to generate GraphQL code (SDL).
1918
* [**`apollo-parser`**](crates/apollo-parser) - a library to parse the GraphQL query language.
2019
* [**`apollo-smith`**](crates/apollo-smith) - a test case generator to test GraphQL code (SDL).
2120

0 commit comments

Comments
 (0)