mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-14 17:23:09 +00:00
* feat: add license checker workflow Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix existing header Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * specify license for internal sub-crate Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix rustfmt Signed-off-by: Ruihang Xia <waynestxia@gmail.com> Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
65 lines
2.5 KiB
TOML
65 lines
2.5 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "script"
|
|
version = "0.1.0"
|
|
license = "Apache-2.0"
|
|
|
|
[features]
|
|
default = ["python"]
|
|
python = [
|
|
"dep:datafusion",
|
|
"dep:datafusion-expr",
|
|
"dep:datafusion-physical-expr",
|
|
"dep:rustpython-vm",
|
|
"dep:rustpython-parser",
|
|
"dep:rustpython-compiler",
|
|
"dep:rustpython-compiler-core",
|
|
"dep:rustpython-bytecode",
|
|
"dep:rustpython-ast",
|
|
"dep:paste",
|
|
]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
catalog = { path = "../catalog" }
|
|
common-catalog = { path = "../common/catalog" }
|
|
common-error = { path = "../common/error" }
|
|
common-function = { path = "../common/function" }
|
|
common-query = { path = "../common/query" }
|
|
common-recordbatch = { path = "../common/recordbatch" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
common-time = { path = "../common/time" }
|
|
console = "0.15"
|
|
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", branch = "arrow2", optional = true }
|
|
datafusion-common = { git = "https://github.com/apache/arrow-datafusion.git", branch = "arrow2" }
|
|
datafusion-expr = { git = "https://github.com/apache/arrow-datafusion.git", branch = "arrow2", optional = true }
|
|
datafusion-physical-expr = { git = "https://github.com/apache/arrow-datafusion.git", branch = "arrow2", optional = true }
|
|
datatypes = { path = "../datatypes" }
|
|
futures = "0.3"
|
|
futures-util = "0.3"
|
|
paste = { version = "1.0", optional = true }
|
|
query = { path = "../query" }
|
|
rustpython-ast = { git = "https://github.com/RustPython/RustPython", optional = true, rev = "02a1d1d" }
|
|
rustpython-bytecode = { git = "https://github.com/RustPython/RustPython", optional = true, rev = "02a1d1d" }
|
|
rustpython-compiler = { git = "https://github.com/RustPython/RustPython", optional = true, rev = "02a1d1d" }
|
|
rustpython-compiler-core = { git = "https://github.com/RustPython/RustPython", optional = true, rev = "02a1d1d" }
|
|
rustpython-parser = { git = "https://github.com/RustPython/RustPython", optional = true, rev = "02a1d1d" }
|
|
rustpython-vm = { git = "https://github.com/RustPython/RustPython", optional = true, rev = "02a1d1d", features = [
|
|
"default",
|
|
"freeze-stdlib",
|
|
] }
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
sql = { path = "../sql" }
|
|
table = { path = "../table" }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
log-store = { path = "../log-store" }
|
|
ron = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
storage = { path = "../storage" }
|
|
table-engine = { path = "../table-engine", features = ["test"] }
|
|
tempdir = "0.3"
|
|
tokio = { version = "1.18", features = ["full"] }
|
|
tokio-test = "0.4"
|