-
Notifications
You must be signed in to change notification settings - Fork 0
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
29 changed files
with
157 additions
and
43 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "rquickjs-extra-test" | ||
description = "Test library for RQuickJS" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/rquickjs/rquickjs-extra" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
futures = { workspace = true } | ||
rquickjs = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "rquickjs-extra-utils" | ||
description = "Utils library for RQuickJS" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/rquickjs/rquickjs-extra" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
rquickjs = { workspace = true } |
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
File renamed without changes.
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,2 +1,3 @@ | ||
pub mod ffi; | ||
pub mod module; | ||
pub mod result; |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[package] | ||
name = "rquickjs-extra-console" | ||
description = "Console module for RQuickJS" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/rquickjs/rquickjs-extra" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
log = { workspace = true } | ||
rquickjs = { workspace = true } | ||
|
||
[dev-dependencies] | ||
rquickjs-extra-test = { path = "../../libs/test" } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[package] | ||
name = "rquickjs-extra-os" | ||
description = "OS module for RQuickJS" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/rquickjs/rquickjs-extra" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
|
||
[dev-dependencies] | ||
futures = { version = "0.3" } | ||
tokio = { version = "1", features = ["full"] } |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "rquickjs-extra-sqlite" | ||
description = "SQLite module for RQuickJS" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/rquickjs/rquickjs-extra" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
either = { workspace = true } | ||
rquickjs = { workspace = true } | ||
rquickjs-extra-utils = { path = "../../libs/utils" } | ||
sqlx = { workspace = true } | ||
|
||
[dev-dependencies] | ||
rquickjs-extra-test = { path = "../../libs/test" } | ||
tokio = { workspace = true, features = ["full"] } |
5 changes: 2 additions & 3 deletions
5
src/modules/sqlite/argument.rs → modules/sqlite/src/argument.rs
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "rquickjs-extra-timers" | ||
description = "Timers module for RQuickJS" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/rquickjs/rquickjs-extra" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
log = { workspace = true } | ||
rquickjs = { workspace = true } | ||
tokio = { workspace = true, features = ["time"] } | ||
|
||
[dev-dependencies] | ||
futures = { workspace = true } | ||
rquickjs-extra-test = { path = "../../libs/test" } | ||
tokio = { workspace = true, features = ["full"] } |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[package] | ||
name = "rquickjs-extra-url" | ||
description = "URL module for RQuickJS" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/rquickjs/rquickjs-extra" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
either = { workspace = true } | ||
rquickjs = { workspace = true } | ||
|
||
[dev-dependencies] | ||
rquickjs-extra-test = { path = "../../libs/test" } |
File renamed without changes.
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,7 +1,11 @@ | ||
pub use self::modules::*; | ||
#[cfg(feature = "console")] | ||
pub use rquickjs_extra_console as console; | ||
|
||
mod ffi; | ||
mod modules; | ||
#[cfg(test)] | ||
mod test; | ||
mod utils; | ||
#[cfg(feature = "sqlite")] | ||
pub use rquickjs_extra_sqlite as sqlite; | ||
|
||
#[cfg(feature = "timers")] | ||
pub use rquickjs_extra_timers as timers; | ||
|
||
#[cfg(feature = "url")] | ||
pub use rquickjs_extra_url as url; |
This file was deleted.
Oops, something went wrong.