Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bench-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "bench-build"
version = "0.14.0"
version = "0.0.0"
authors = ["askama-rs developers"]
edition = "2024"
rust-version = "1.88"
publish = false

[dependencies]
askama = { path = "../askama", version = "0.15.0", default-features = false, features = ["std"] }
askama_macros = { path = "../askama_macros", version = "0.15.0", features = ["std"] }
askama = { path = "../askama", default-features = false, features = ["std"] }
askama_macros = { path = "../askama_macros", version = "0.15.1", features = ["std"] }

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions examples/actix-web-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-web-app"
version = "0.14.0"
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
Expand All @@ -9,7 +9,7 @@ publish = false
# and actix-web as your web-framework.
[dependencies]
actix-web = { version = "4.9.0", default-features = false, features = ["macros"] }
askama = { version = "0.15.0", path = "../../askama" }
askama = { path = "../../askama" }
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }

# serde and strum are used to parse (deserialize) and generate (serialize) information
Expand Down
4 changes: 2 additions & 2 deletions examples/axum-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "axum-app"
version = "0.14.0"
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false

# This is an example application that uses both askama as template engine,
# and axum as your web-framework.
[dependencies]
askama = { version = "0.15.0", path = "../../askama" }
askama = { path = "../../askama" }
axum = "0.8.1"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }

Expand Down
4 changes: 2 additions & 2 deletions examples/poem-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "poem-app"
version = "0.14.0"
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false

# This is an example application that uses both askama as template engine,
# and poem as your web-framework.
[dependencies]
askama = { version = "0.15.0", path = "../../askama" }
askama = { path = "../../askama" }
poem = "3.1.6"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }

Expand Down
4 changes: 2 additions & 2 deletions examples/rocket-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "actix-web-app"
version = "0.14.0"
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false

# This is an example application that uses both askama as template engine,
# and rocket as your web-framework.
[dependencies]
askama = { version = "0.15.0", path = "../../askama" }
askama = { path = "../../askama" }
rocket = "0.5.1"

# strum is used to parse and serialize information between web requests,
Expand Down
4 changes: 2 additions & 2 deletions examples/salvo-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "salvo-app"
version = "0.14.0"
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false

# This is an example application that uses both askama as template engine,
# and salvo as your web-framework.
[dependencies]
askama = { version = "0.15.0", path = "../../askama" }
askama = { path = "../../askama" }
salvo = { version = "0.78.0", default-features = false, features = ["http1", "logging", "server"] }
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }

Expand Down
4 changes: 2 additions & 2 deletions examples/warp-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "actix-web-app"
version = "0.14.0"
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false

# This is an example application that uses both askama as template engine,
# and actix-web as your web-framework.
[dependencies]
askama = { version = "0.15.0", path = "../../askama" }
askama = { path = "../../askama" }
http = "0.2.12"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
warp = "0.3.7"
Expand Down
4 changes: 2 additions & 2 deletions testing-alloc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "askama_testing-alloc"
version = "0.15.0"
version = "0.0.0"
authors = ["askama-rs developers"]
edition = "2024"
rust-version = "1.88"
publish = false

[dev-dependencies]
askama = { path = "../askama", version = "0.15.0", default-features = false, features = ["alloc", "derive"] }
askama = { path = "../askama", default-features = false, features = ["alloc", "derive"] }

assert_matches = "1.5.0"

Expand Down
4 changes: 2 additions & 2 deletions testing-no-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "askama_testing-no-std"
version = "0.15.0"
version = "0.0.0"
authors = ["askama-rs developers"]
edition = "2024"
rust-version = "1.88"
publish = false

[dev-dependencies]
askama = { path = "../askama", version = "0.15.0", default-features = false, features = ["derive"] }
askama = { path = "../askama", default-features = false, features = ["derive"] }

assert_matches = "1.5.0"

Expand Down
4 changes: 2 additions & 2 deletions testing-renamed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "askama_testing-renamed"
version = "0.15.0"
version = "0.0.0"
authors = ["askama-rs developers"]
edition = "2024"
rust-version = "1.88"
publish = false

[dev-dependencies]
some_name = { package = "askama", path = "../askama", version = "0.15.0", default-features = false, features = ["derive"] }
some_name = { package = "askama", path = "../askama", default-features = false, features = ["derive"] }

assert_matches = "1.5.0"

Expand Down
8 changes: 4 additions & 4 deletions testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_testing"
version = "0.15.0"
version = "0.0.0"
authors = ["askama-rs developers"]
edition = "2024"
rust-version = "1.88"
Expand All @@ -11,16 +11,16 @@ name = "all"
harness = false

[dependencies]
askama = { path = "../askama", version = "0.15.0" }
askama = { path = "../askama" }

serde_json = { version = "1.0", optional = true }

# intentionally shadow the name `::core` to test if the generated code still works fine
core = { package = "intentionally-empty", version = "1.0.0" }

[dev-dependencies]
askama = { path = "../askama", version = "0.15.0", features = ["code-in-doc", "serde_json"] }
askama_parser = { path = "../askama_parser", version = "0.15.0" }
askama = { path = "../askama", features = ["code-in-doc", "serde_json"] }
askama_parser = { path = "../askama_parser" }

assert_matches = "1.5.0"
criterion = "0.8"
Expand Down
Loading