mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00
Add missing softlinks
This commit is contained in:
parent
e800b7ca90
commit
0cc0189927
@ -2,14 +2,11 @@
|
|||||||
name = "rinja"
|
name = "rinja"
|
||||||
version = "0.3.5"
|
version = "0.3.5"
|
||||||
description = "Type-safe, compiled Jinja-like templates for Rust"
|
description = "Type-safe, compiled Jinja-like templates for Rust"
|
||||||
documentation = "https://docs.rs/rinja"
|
|
||||||
keywords = ["markup", "template", "jinja2", "html"]
|
keywords = ["markup", "template", "jinja2", "html"]
|
||||||
categories = ["template-engine"]
|
categories = ["template-engine"]
|
||||||
homepage = "https://rinja.readthedocs.io/"
|
homepage = "https://rinja.readthedocs.io/"
|
||||||
repository = "https://github.com/rinja-rs/rinja"
|
repository = "https://github.com/rinja-rs/rinja"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
workspace = ".."
|
|
||||||
readme = "../README.md"
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.81"
|
rust-version = "1.81"
|
||||||
|
|
||||||
@ -17,18 +14,14 @@ rust-version = "1.81"
|
|||||||
features = ["full"]
|
features = ["full"]
|
||||||
rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"]
|
rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"]
|
||||||
|
|
||||||
[badges]
|
[[bench]]
|
||||||
maintenance = { status = "actively-developed" }
|
name = "to-json"
|
||||||
|
harness = false
|
||||||
|
required-features = ["serde_json"]
|
||||||
|
|
||||||
[features]
|
[[bench]]
|
||||||
default = ["config", "std", "urlencode"]
|
name = "escape"
|
||||||
alloc = ["rinja_derive/alloc", "serde?/alloc", "serde_json?/alloc", "percent-encoding?/alloc"]
|
harness = false
|
||||||
full = ["default", "code-in-doc", "serde_json"]
|
|
||||||
code-in-doc = ["rinja_derive/code-in-doc"]
|
|
||||||
config = ["rinja_derive/config"]
|
|
||||||
serde_json = ["rinja_derive/serde_json", "dep:serde", "dep:serde_json"]
|
|
||||||
std = ["alloc", "rinja_derive/std", "serde?/std", "serde_json?/std", "percent-encoding?/std"]
|
|
||||||
urlencode = ["rinja_derive/urlencode", "dep:percent-encoding"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rinja_derive = { version = "=0.3.5", path = "../rinja_derive" }
|
rinja_derive = { version = "=0.3.5", path = "../rinja_derive" }
|
||||||
@ -42,11 +35,27 @@ itoa = "1.0.11"
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.5"
|
criterion = "0.5"
|
||||||
|
|
||||||
[[bench]]
|
[badges]
|
||||||
name = "to-json"
|
maintenance = { status = "actively-developed" }
|
||||||
harness = false
|
|
||||||
required-features = ["serde_json"]
|
|
||||||
|
|
||||||
[[bench]]
|
[features]
|
||||||
name = "escape"
|
default = ["config", "std", "urlencode"]
|
||||||
harness = false
|
full = ["default", "code-in-doc", "serde_json"]
|
||||||
|
|
||||||
|
alloc = [
|
||||||
|
"rinja_derive/alloc",
|
||||||
|
"serde?/alloc",
|
||||||
|
"serde_json?/alloc",
|
||||||
|
"percent-encoding?/alloc"
|
||||||
|
]
|
||||||
|
code-in-doc = ["rinja_derive/code-in-doc"]
|
||||||
|
config = ["rinja_derive/config"]
|
||||||
|
serde_json = ["rinja_derive/serde_json", "dep:serde", "dep:serde_json"]
|
||||||
|
std = [
|
||||||
|
"alloc",
|
||||||
|
"rinja_derive/std",
|
||||||
|
"serde?/std",
|
||||||
|
"serde_json?/std",
|
||||||
|
"percent-encoding?/std"
|
||||||
|
]
|
||||||
|
urlencode = ["rinja_derive/urlencode", "dep:percent-encoding"]
|
||||||
|
1
rinja/README.md
Symbolic link
1
rinja/README.md
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../README.md
|
1
rinja/_typos.toml
Symbolic link
1
rinja/_typos.toml
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../_typos.toml
|
1
rinja/deny.toml
Symbolic link
1
rinja/deny.toml
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../deny.toml
|
1
rinja/tomlfmt.toml
Symbolic link
1
rinja/tomlfmt.toml
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../tomlfmt.toml
|
@ -5,7 +5,6 @@ description = "Procedural macro package for Rinja"
|
|||||||
homepage = "https://github.com/rinja-rs/rinja"
|
homepage = "https://github.com/rinja-rs/rinja"
|
||||||
repository = "https://github.com/rinja-rs/rinja"
|
repository = "https://github.com/rinja-rs/rinja"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
workspace = ".."
|
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.81"
|
rust-version = "1.81"
|
||||||
|
@ -8,7 +8,6 @@ categories = ["template-engine"]
|
|||||||
homepage = "https://github.com/rinja-rs/rinja"
|
homepage = "https://github.com/rinja-rs/rinja"
|
||||||
repository = "https://github.com/rinja-rs/rinja"
|
repository = "https://github.com/rinja-rs/rinja"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
workspace = ".."
|
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.81"
|
rust-version = "1.81"
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
name = "rinja_testing-alloc"
|
name = "rinja_testing-alloc"
|
||||||
version = "0.3.5"
|
version = "0.3.5"
|
||||||
authors = ["rinja-rs developers"]
|
authors = ["rinja-rs developers"]
|
||||||
workspace = ".."
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.81"
|
rust-version = "1.81"
|
||||||
publish = false
|
publish = false
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
name = "rinja_testing-no-std"
|
name = "rinja_testing-no-std"
|
||||||
version = "0.3.5"
|
version = "0.3.5"
|
||||||
authors = ["rinja-rs developers"]
|
authors = ["rinja-rs developers"]
|
||||||
workspace = ".."
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.81"
|
rust-version = "1.81"
|
||||||
publish = false
|
publish = false
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
name = "rinja_testing"
|
name = "rinja_testing"
|
||||||
version = "0.3.5"
|
version = "0.3.5"
|
||||||
authors = ["rinja-rs developers"]
|
authors = ["rinja-rs developers"]
|
||||||
workspace = ".."
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.81"
|
rust-version = "1.81"
|
||||||
publish = false
|
publish = false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user