Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.toml]
indent_size = tab
tab_width = 2
137 changes: 107 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 34 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,41 +1,56 @@
[workspace]
members = ["atrium-client", "atrium-core", "atrium-server", "xtask"]
members = [
"atrium-client",
"atrium-core",
"atrium-server",
"tests/behavior",
"tests/toolkit",
"xtask",
]
resolver = "2"

[workspace.package]
edition = "2024"
version = "0.1.0"

[workspace.dependencies]
base64 = "0.22.1"
bytes = "1.10.1"
# Workspace members
atrium = { path = "atrium-server" }
atrium-client = { path = "atrium-client" }
atrium-core = { path = "atrium-core" }
tests-toolkit = { path = "tests/toolkit" }

# Crates.io dependencies
base64 = { version = "0.22.1" }
bytes = { version = "1.10.1" }
clap = { version = "4.5.35", features = ["derive"] }
error-stack = { version = "0.5", default-features = false, features = [
"std",
"serde",
] }
fastrace = "0.7.9"
foyer = { version = "0.15.3", features = ["nightly"] }
indent = "0.1.1"
fastrace = { version = "0.7.9" }
foyer = { version = "0.16.0", features = ["nightly"] }
indent = { version = "0.1.1" }
insta = { version = "1.42.2" }
log = "0.4.27"
logforth = { version = "0.23.1", features = ["colored"] }
poem = "3.1.7"
pretty_assertions = "1.4.1"
reqwest = "0.12.15"
local-ip-address = { version = "0.6.3" }
log = { version = "0.4.27", features = ["kv"] }
logforth = { version = "0.24.0", features = ["colored"] }
mea = { version = "0.3.4" }
poem = { version = "3.1.7" }
pretty_assertions = { version = "1.4.1" }
regex = { version = "1.11.1" }
reqwest = { version = "0.12.15" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
styled = "0.2.0"
serde_json = { version = "1.0" }
styled = { version = "0.2.0" }
tempfile = { version = "3.19.1" }
test-harness = { version = "0.3.0" }
thiserror = { version = "2.0" }
tokio = "1.44.1"
toml = "0.8.20"
unindent = "0.2.4"
tokio = { version = "1.44.2" }
toml = { version = "0.8.20" }
unindent = { version = "0.2.4" }
urlencoding = "2.1.3"

# Workspace members
atrium-core = { path = "atrium-core" }

[profile.release]
debug = true
lto = true
6 changes: 6 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Copyright (c) 2025 ScopeDB Inc.
All rights reserved.

For all third party components incorporated into this project, those components
are licensed under the original license provided by the owner of the applicable
component.
6 changes: 3 additions & 3 deletions atrium-client/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ impl ClientBuilder {
}

pub fn build(self) -> Client {
Client {
endpoint: self.endpoint,
}
let builder = reqwest::ClientBuilder::new().no_proxy();
// FIXME(tisonkun): fallible over unwrap
Client::new(self.endpoint, builder).unwrap()
}
}
Loading
Loading