Skip to content

Commit

Permalink
docs: reorder package fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Aug 27, 2024
1 parent e9ecd6c commit 12ee65c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
13 changes: 6 additions & 7 deletions crates/edgedb_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "edgedb_codegen"
version = { workspace = true }
authors = { workspace = true }
categories = ["database"]
edition = { workspace = true }
homepage = { workspace = true }
keywords = ["edgedb", "database", "typesafe", "checked", "macros"]
license = { workspace = true }
readme = "readme.md"
repository = { workspace = true }
rust-version = { workspace = true }
readme = "readme.md"
categories = ["database"]
keywords = ["edgedb", "database", "typesafe", "checked", "macros"]
description = "Generate fully typed rust code from your EdgeDB schema and inline queries."

[dependencies]
Expand Down Expand Up @@ -41,13 +41,12 @@ tokio = { workspace = true, features = ["time", "test-util", "fs"] }
trybuild = { workspace = true }

[features]

#! #### Default
# ! #### Default

## The default feature is `with_all`.
default = ["with_all"]

#! #### Types
# ! #### Types

## Include the `num-bigint` dependency.
with_bigint = [
Expand Down Expand Up @@ -78,7 +77,7 @@ with_all = [
"edgedb-protocol/all-types",
]

#! #### Behavior
# ! #### Behavior

## Enable serde for the generated code.
serde = [
Expand Down
6 changes: 3 additions & 3 deletions crates/edgedb_codegen_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "edgedb_codegen_core"
version = { workspace = true }
authors = { workspace = true }
categories = ["database"]
edition = { workspace = true }
homepage = { workspace = true }
keywords = ["edgedb", "database", "typesafe", "checked", "macros"]
license = { workspace = true }
readme = "readme.md"
repository = { workspace = true }
rust-version = { workspace = true }
readme = "readme.md"
categories = ["database"]
keywords = ["edgedb", "database", "typesafe", "checked", "macros"]
description = "Utilities for codegen in the `edgedb_codegen` crate."

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/edgedb_codegen_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "edgedb_codegen_macros"
version = { workspace = true }
authors = { workspace = true }
categories = ["database"]
edition = { workspace = true }
homepage = { workspace = true }
keywords = ["edgedb", "database", "typesafe", "checked", "macros"]
license = { workspace = true }
readme = "readme.md"
repository = { workspace = true }
rust-version = { workspace = true }
readme = "readme.md"
categories = ["database"]
keywords = ["edgedb", "database", "typesafe", "checked", "macros"]
description = "The proc-macro crate for the `edgedb_codegen` crate."

[lib]
Expand Down

0 comments on commit 12ee65c

Please sign in to comment.