Git Product home page Git Product logo

Comments (7)

maciejhirsz avatar maciejhirsz commented on June 30, 2024 2

Just put the impl for serde_json::Value in a separate module, like serde.rs. In lib.rs do a conditional import:

#[cfg(feature = "json")]
mod serde;

Adding serde_json as optional feature in Cargo.toml:

[dependencies]
# ...all the other deps
serde_json = { version = "1.0", optional = true }

[features]
default = []

# Implements `Content` for `serde_json::Value`
json = ["serde_json"]

That way enabling the json feature will build Ramhorns with serde_json and the module that contains the trait impl.

from ramhorns.

digitalsanctum avatar digitalsanctum commented on June 30, 2024 1

I will try implementing Content trait for serde_json::Value

from ramhorns.

maciejhirsz avatar maciejhirsz commented on June 30, 2024

Ramhorns supports HashMaps and BTreeMaps so you can construct arbitrary dynamic structures that way. To work with serde_json::Value directly the Content trait would need to be implemented for it, we could add it to the ramhorns crate via a feature with optional serde_json dependency.

This should be a good first issue if anyone wants to drop a PR, I might not have time to tackle this within the next week or two.

from ramhorns.

digitalsanctum avatar digitalsanctum commented on June 30, 2024

If serde_json is to be an optional dependency, then how shall I organize the added support for serde_json::Value? I'm somewhat new to Rust, so providing as much detail as possible would be appreciated.

from ramhorns.

eeyun avatar eeyun commented on June 30, 2024

I think I might be hitting this as well.

But to make sure - there is no alternative means of using arbitary json (even if say, converted to some string type) with a template and ramhorns today, correct? I've been unsuccessful anyways.

If that is the case then I'm a huge 👍 on this feature request and I would be curious to know if there has been any progress on the feature!

from ramhorns.

maciejhirsz avatar maciejhirsz commented on June 30, 2024

@eeyun don't think there has been, happy to accept a PR.

from ramhorns.

eeyun avatar eeyun commented on June 30, 2024

Cool I just wanted to make sure. It would be a great feature. I may try to get something together for it but a bit underwater currently. Thanks for maintaining the project either way!

from ramhorns.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.