henry
henry
> Try to specify the crate name, and it uses cargo metadata to find that crate, thus it should find the one in you workspace, as long as your cargo.toml...
> Alternatively, is it possible to rename your names, such that their name matches? (I guess this is not a breaking change since end users see gluesql_memory_storage, but please correct...
https://github.com/gluesql/gluesql/pull/1503/files#diff-e02d5b149934978d9452cc5ea33cabe9320024ad20cd2929d3e0d3aae39ae9f8R15 ```rs // pkg/dart/rust/src/frb_generated.rs use gluesql_core::ast_builder::expr::function::*; // module `expr` is private ``` This line got error: module `expr` is private It looks like it happens when the third party module...
What can be the workaround for now? just ignore the whole module?
https://github.com/gluesql/gluesql/blob/518a95101e8973b1923575eec0e2a441d5387d81/pkg/dart/rust/src/frb_generated.rs#L3050 I found another issue. ```rs // GlueSQL // core/src/translate/mod.rs use { crate::{ast::Statement, ..}, sqlparser::ast::{Statement as SqlStatement, ..}, }; pub fn translate(sql_statement: &SqlStatement) -> Result ``` Cuz GlueSQL has translate...
I know lifetime is not fully supported yet But according to [this](https://cjycode.com/flutter_rust_bridge/guides/lifetimes/type-with-lifetimes), It seems like my simple enum with lifetime should be supported but it doesn't ```rs // gluesql/core/src/store/function.rs #[derive(Clone,...
Yes I just pushed to that PR. you can work on pkg/dart and i'm still using the basic template of `rust/src/api/simple.rs` https://github.com/gluesql/gluesql/pull/1503/files# And the issue is at this line https://github.com/gluesql/gluesql/pull/1503/files#diff-421342a550ee55eb0ad9eaa470d13d3967ccf529a9bc8b0c1b7245f332fe8012R3575
> Hmm, `enable_lifetime: true` is not in flutter_rust_bridge.yaml yet, thus it is not enabled. I tried and removed that line. cuz even after using that option, the issue was same...
Cuz those documents are quite outdated.. I will manually answer it here. 1. Basically GlueSQL is not a full DB, but rather an SQL library. (Of course it works as...
After i upgraded frb to 2.0.0, my `flutter_rust_bridge_codegen generate` got error: ```sh src/library/codegen/ir/hir/tree/module.rs:41:41: index out of bounds: the len is 0 but the index is 0 ``` When i tried...