Add picodata entrypoint
This patch introduces the new cargo package - picodata. The package consists of two parts: - The `picodata` binary does some env magic and executes `tarantool -l picodata`. - The `libpicodata` dylib is the starting point for further development.
[package] | ||
name = "demo" | ||
name = "picodata" | ||
version = "0.1.0" | ||
edition = "2021" | ||
edition = "2018" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
libc = "0.2.108" | ||
errno = "0.2.8" | ||
[dev-dependencies] | ||
assert_cmd = "2.0" | ||
tempfile = "3" | ||
[lib] | ||
test = false | ||
crate-type = ["cdylib"] | ||
[[bin]] | ||
name = "picodata" | ||
test = false |
src/execve.rs
0 → 100644
src/main.rs
0 → 100644
tests/cli.rs
0 → 100644
Please register or sign in to comment