Skip to content

Commit f7ab9f0

Browse files
move things around
1 parent 913900d commit f7ab9f0

File tree

16 files changed

+250
-149
lines changed

16 files changed

+250
-149
lines changed

Cargo.lock

Lines changed: 132 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ic-agent/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ keywords = ["internet-computer", "agent", "icp", "dfinity"]
1515
include = ["src", "Cargo.toml", "../LICENSE", "README.md"]
1616

1717
[dependencies]
18+
arc-swap = "1.7"
19+
async-channel = "1.9"
20+
async-trait = "0.1"
1821
async-lock = "3.3"
22+
async-watch = "0.3"
1923
backoff = "0.4.0"
2024
cached = { version = "0.52", features = ["ahash"], default-features = false }
2125
candid = { workspace = true }
@@ -41,8 +45,10 @@ serde_cbor = { workspace = true }
4145
serde_repr = { workspace = true }
4246
sha2 = { workspace = true }
4347
simple_asn1 = "0.6.1"
48+
stop-token = "0.7"
4449
thiserror = { workspace = true }
4550
time = { workspace = true }
51+
tracing = "0.1"
4652
url = "2.1.0"
4753

4854
[dependencies.reqwest]
@@ -67,6 +73,7 @@ web-sys = { version = "0.3", features = ["Window"], optional = true }
6773

6874
[dev-dependencies]
6975
serde_json.workspace = true
76+
tracing-subscriber = "0.3"
7077

7178
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
7279
tokio = { workspace = true, features = ["full"] }

ic-agent/src/agent/route_provider.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ use url::Url;
77

88
use crate::agent::AgentError;
99

10+
pub mod dynamic_routing;
11+
1012
const IC0_DOMAIN: &str = "ic0.app";
1113
const ICP0_DOMAIN: &str = "icp0.io";
1214
const ICP_API_DOMAIN: &str = "icp-api.io";

0 commit comments

Comments
 (0)