-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade deps and dump version to 0.6.0 (#18)
* chore(deps): cargo * wip: use axum & cargo fmt * wip: remove `once_cell` * wip: upgrade opentelemetry ref: open-telemetry/opentelemetry-rust#1000 ref: open-telemetry/opentelemetry-rust#2221 ref: open-telemetry/opentelemetry-rust#2085 * chore: cargo clippy * chore(deps): upgrade go * version: upgrade to 0.6.0 * chore(deps): use rkyv * chore(deps): update * chore(deps): update * wip: split mods into crates * wip: remove unused dependencies * chore(ci): upgrade rust version in Dockerfile * fix(ci): update cargo install path * chore: tidy up main.rs * fix(test): review snaps & fix tests * chore(deps): update * fix(cgroup): early stop when use `map_while` * chore: init logger before setup cgroup * chore(deps): ebpf version restore to v0.12.3 * chore(lazylock): use `LazyLock::force` to init cache * fix(cache): remove unnecessary async * chore(config): make default functions const
- Loading branch information
1 parent
4c9eb76
commit 3a82592
Showing
106 changed files
with
2,644 additions
and
1,923 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 |
---|---|---|
@@ -1,66 +1,76 @@ | ||
[package] | ||
name = "seele" | ||
version = "0.2.0" | ||
[workspace] | ||
members = [ "crates/*" ] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
edition = "2021" | ||
version = "0.6.0" | ||
|
||
[profile.release] | ||
lto = "thin" | ||
opt-level = 3 | ||
strip = true | ||
lto = true | ||
|
||
[dependencies] | ||
[workspace.dependencies] | ||
anyhow = "1.0" | ||
async-recursion = "1.1" | ||
async-trait = "0.1" | ||
axum = "0.8" | ||
base64 = "0.22" | ||
bincode = "2.0.0-rc.3" | ||
bytes = "1.7" | ||
chrono = { version = "0.4", features = ["serde"] } | ||
config = "0.14" | ||
bytes = "1.9" | ||
chrono = { version = "0.4", features = [ "serde" ] } | ||
config = "0.15" | ||
dbus = "0.9" | ||
duct = "0.13" | ||
either = "1.12" | ||
ellipse = "0.2" | ||
futures-util = "0.3" | ||
http = "1.1" | ||
http-cache = { version = "0.19", default-features = false, features = ["manager-moka"] } | ||
http-cache-reqwest = "0.14" | ||
indexmap = { version = "2.6", features = ["serde"] } | ||
http = "1.2" | ||
http-cache = { version = "0.20", default-features = false, features = [ | ||
"manager-moka" | ||
] } | ||
http-cache-reqwest = "0.15" | ||
indexmap = { version = "2.7", features = [ "serde" ] } | ||
insta = { version = "1.42", features = [ "glob", "redactions", "ron" ] } | ||
lapin = "2.5" | ||
libcgroups = "0.4" | ||
moka = { version = "0.12", features = ["future", "sync"] } | ||
nano-id = { version = "0.4", features = ["base62"] } | ||
nix = { version = "0.29", features = ["mount", "hostname", "signal"] } | ||
libcgroups = "0.5" | ||
map-macro = "0.3" | ||
moka = { version = "0.12", features = [ "future", "sync" ] } | ||
nano-id = { version = "0.4", features = [ "base62" ] } | ||
nix = { version = "0.29", features = [ "hostname", "mount", "signal" ] } | ||
num_cpus = "1" | ||
once_cell = "1" | ||
opentelemetry = "0.27" | ||
opentelemetry-otlp = "0.27" | ||
opentelemetry_sdk = { version = "0.27", features = [ "rt-tokio" ] } | ||
quick-js = { version = "0.4", features = [ "patched" ] } | ||
rand = { version = "0.9" } | ||
regex = "1" | ||
quick-js = { version = "0.4", features = ["patched"] } | ||
reqwest = { version = "0.12", features = ["stream", "multipart"] } | ||
reqwest-middleware = "0.3" | ||
reqwest = { version = "0.12", features = [ "multipart", "stream" ] } | ||
reqwest-middleware = "0.4" | ||
ring-channel = "0.12" | ||
serde = { version = "1.0", features = ["derive", "rc"] } | ||
serde_json = { version = "1.0", features = ["preserve_order"] } | ||
rkyv = "0.8" | ||
serde = { version = "1.0", features = [ "derive", "rc" ] } | ||
serde_json = { version = "1.0", features = [ "preserve_order" ] } | ||
serde_yaml = "0.9" | ||
sha2 = "0.10" | ||
shell-words = "1.1" | ||
systemd = "0.10" | ||
thread_local = "1.1" | ||
tokio = { version = "1", features = ["full"] } | ||
tokio = { version = "1", features = [ "full" ] } | ||
tokio-graceful-shutdown = "0.15" | ||
tokio-util = { version = "0.7", features = ["io"] } | ||
tokio-util = { version = "0.7", features = [ "io" ] } | ||
tracing = "0.1" | ||
tracing-opentelemetry = "0.28" | ||
tracing-subscriber = "0.3" | ||
triggered = "0.1" | ||
url = { version = "2.5", features = ["serde"] } | ||
url = { version = "2.5", features = [ "serde" ] } | ||
uzers = "0.12" | ||
|
||
# locked dependencies because of the api changes in the newer versions | ||
tracing-opentelemetry = "=0.18.0" | ||
opentelemetry = { version = "=0.18.0", features = ["rt-tokio", "metrics", "trace"] } | ||
opentelemetry-otlp = { version = "=0.11.0", features = ["metrics"] } | ||
hyper = { version = "0", features = ["server", "stream"] } | ||
# local dependencies | ||
|
||
[dev-dependencies] | ||
insta = { version = "1.40", features = ["glob", "redactions", "ron"] } | ||
map-macro = "0.3" | ||
rand = { version = "0.8" } | ||
seele_cgroup = { path = "crates/seele-cgroup" } | ||
seele_composer = { path = "crates/seele-composer" } | ||
seele_config = { path = "crates/seele-config" } | ||
seele_exchange = { path = "crates/seele-exchange" } | ||
seele_shared = { path = "crates/seele-shared" } | ||
seele_worker = { path = "crates/seele-worker" } |
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,15 @@ | ||
[package] | ||
edition.workspace = true | ||
name = "seele_cgroup" | ||
version.workspace = true | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
dbus = { workspace = true } | ||
libcgroups = { workspace = true } | ||
tracing = { workspace = true } | ||
|
||
# local dependencies | ||
|
||
seele_config = { workspace = true } | ||
seele_shared = { 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
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,33 @@ | ||
[package] | ||
edition.workspace = true | ||
name = "seele_composer" | ||
version.workspace = true | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
async-recursion = { workspace = true } | ||
chrono = { workspace = true } | ||
either = { workspace = true } | ||
ellipse = { workspace = true } | ||
futures-util = { workspace = true } | ||
opentelemetry = { workspace = true } | ||
quick-js = { workspace = true } | ||
reqwest = { workspace = true } | ||
ring-channel = { workspace = true } | ||
serde = { workspace = true } | ||
serde_json = { workspace = true } | ||
serde_yaml = { workspace = true } | ||
tokio = { workspace = true } | ||
tokio-graceful-shutdown = { workspace = true } | ||
tracing = { workspace = true } | ||
|
||
# local dependencies | ||
|
||
seele_config = { workspace = true } | ||
seele_shared = { workspace = true } | ||
seele_worker = { workspace = true } | ||
|
||
[dev-dependencies] | ||
insta = { workspace = true } | ||
map-macro = { workspace = true } | ||
rand = { 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.
Oops, something went wrong.