-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "njord" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
edition = "2021" | ||
authors = ["Marcus Cvjeticanin <[email protected]>"] | ||
description = "A versatile, feature-rich Rust ORM." | ||
|
@@ -16,7 +16,7 @@ keywords = ["orm", "database", "sql"] | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
njord_derive = { version = "0.4.0", path = "../njord_derive" } | ||
njord_derive = { version = "0.5.0", path = "../njord_derive" } | ||
log = "0.4.22" | ||
rusqlite = { version = "0.32.1", features = ["bundled"], optional = true } | ||
serde = { version = "1.0.215", features = ["derive"] } | ||
|
@@ -27,15 +27,15 @@ tokio = { version = "1.41.1", features = ["full"], optional = true } | |
tokio-util = { version = "0.7.12", features = ["compat"], optional = true } | ||
|
||
[dev-dependencies] | ||
njord_derive = { version = "0.4.0", path = "../njord_derive" } | ||
njord_derive = { version = "0.5.0", path = "../njord_derive" } | ||
|
||
# This cfg cannot be enabled, but it still forces Cargo to keep njord_derive's | ||
# version in lockstep with njord's, even if someone depends on the two crates | ||
# separately with njord's "derive" feature disabled. Every njord_derive release | ||
# is compatible with exactly one serde release because the generated code | ||
# involves nonpublic APIs which are not bound by semver. | ||
[target.'cfg(any())'.dependencies] | ||
njord_derive = { version = "0.4.0", path = "../njord_derive" } | ||
njord_derive = { version = "0.5.0", path = "../njord_derive" } | ||
|
||
[features] | ||
default = ["sqlite"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "njord_derive" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
edition = "2021" | ||
authors = ["Marcus Cvjeticanin <[email protected]>"] | ||
description = "You should not use this crate directly, it is internal to Njord ORM." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters