forked from ezrosent/frawk
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
20 changed files
with
1,288 additions
and
407 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,11 +3,11 @@ name = "zawk" | |
version = "0.5.3" | ||
authors = ["Eli Rosenthal <[email protected]>", "linux_china <[email protected]>"] | ||
edition = "2021" | ||
description = "an efficient Awk-like language with stdlib" | ||
homepage = "https://github.com/linux-china/frawk" | ||
repository = "https://github.com/linux-china/frawk" | ||
description = "An efficient Awk-like language implementation by Rust with stdlib" | ||
homepage = "https://github.com/linux-china/zawk" | ||
repository = "https://github.com/linux-china/zawk" | ||
readme = "README.md" | ||
keywords = ["awk", "csv", "tsv"] | ||
keywords = ["awk", "csv", "tsv", "etl", "stdlib"] | ||
categories = ["command-line-utilities", "text-processing"] | ||
license = "MIT OR Apache-2.0" | ||
build = "build.rs" | ||
|
@@ -17,7 +17,7 @@ build = "build.rs" | |
log = "0.4" | ||
env_logger = "0.11" | ||
petgraph = "0.6" | ||
smallvec = "1.13.1" | ||
smallvec = "1.13.2" | ||
hashbrown = "0.14" | ||
lazy_static = "1.4.0" | ||
regex = "1.10" | ||
|
@@ -43,16 +43,16 @@ itertools = "0.12" | |
num-traits = "0.2" | ||
assert_cmd = "2.0.14" | ||
paste = "1.0" | ||
cranelift = "0.105" | ||
cranelift-codegen = "0.105" | ||
cranelift-frontend = "0.105" | ||
cranelift-module = "0.105" | ||
cranelift-native = "0.105" | ||
cranelift-jit = "0.105" | ||
cranelift = "0.106" | ||
cranelift-codegen = "0.106" | ||
cranelift-frontend = "0.106" | ||
cranelift-module = "0.106" | ||
cranelift-native = "0.106" | ||
cranelift-jit = "0.106" | ||
fast-float = "0.2" | ||
bumpalo = { version = "3.15.3", features = ["collections"] } | ||
target-lexicon = "0.12.14" | ||
uuid = { version = "1.7", features = ["v4", "v7"] } | ||
uuid = { version = "1.8", features = ["v4", "v7", "fast-rng"] } | ||
ulid = "1" | ||
rs-snowflake="0.6" | ||
fend-core = "1.4" | ||
|
@@ -63,6 +63,7 @@ base58 = "0.2" | |
base64 = "0.22" | ||
base-62 = "0.1" | ||
urlencoding = "2" | ||
flate2 = "1.0" | ||
url = "2" | ||
sha2 = "0.10" | ||
md5 = "0.7" | ||
|
@@ -83,7 +84,8 @@ serde = "1" | |
serde_json = "1" | ||
logos = "0.14" | ||
local-ip-address = "0.6" | ||
reqwest = { version = "0.11", features = ["blocking"] } | ||
reqwest = { version = "0.12", features = ["blocking"] } | ||
oneio = {version = "0.16", default-features=false, features = ["remote", "compressions"]} | ||
nats = "0.24" | ||
redis = "0.25" | ||
minio = "0.1.0" | ||
|
@@ -98,7 +100,7 @@ shlex = "1" | |
shell-escape="0.1" | ||
pad="0.1" | ||
rusqlite = { version = "0.31", features = ["bundled"] } | ||
mysql = { version = "24" } | ||
mysql = { version = "25" } | ||
csv = "1" | ||
semver = "1" | ||
ctor="0.2" | ||
|
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
Oops, something went wrong.