Explorar el Código

Replace local aya dependencies to depend on the git for future proofing, deployment and testing

niels hace 2 años
padre
commit
d192ec11e5
Se han modificado 4 ficheros con 13 adiciones y 7 borrados
  1. 2 1
      responder-common/Cargo.toml
  2. 4 2
      responder-ebpf/Cargo.toml
  3. 5 3
      responder/Cargo.toml
  4. 2 1
      xtask/Cargo.toml

+ 2 - 1
responder-common/Cargo.toml

@@ -9,7 +9,8 @@ user = [ "aya" ]
 
 [dependencies]
 # aya = { version = ">=0.11", optional=true }
-aya = { path = "/home/niels/files/temp/aya/aya", optional=true }
+# aya = { path = "/home/niels/files/temp/aya/aya", optional=true }
+aya = { git = "https://github.com/aya-rs/aya", optional=true }
 
 [lib]
 path = "src/lib.rs"

+ 4 - 2
responder-ebpf/Cargo.toml

@@ -4,8 +4,10 @@ version = "0.1.0"
 edition = "2021"
 
 [dependencies]
-aya-bpf = { path = "/home/niels/files/temp/aya/bpf/aya-bpf" }
-aya-log-ebpf = { path = "/home/niels/files/temp/aya/bpf/aya-log-ebpf" }
+# aya-bpf = { path = "/home/niels/files/temp/aya/bpf/aya-bpf" }
+# aya-log-ebpf = { path = "/home/niels/files/temp/aya/bpf/aya-log-ebpf" }
+aya-bpf = { git = "https://github.com/aya-rs/aya" }
+aya-log-ebpf ={ git = "https://github.com/aya-rs/aya" }
 responder-common = { path = "../responder-common" }
 
 [profile.dev]

+ 5 - 3
responder/Cargo.toml

@@ -7,14 +7,16 @@ publish = false
 [dependencies]
 # aya = { version = ">=0.11", features=["async_tokio"] }
 # aya-log = "0.1"
-aya = { path = "/home/niels/files/temp/aya/aya" }
-aya-log = { path = "/home/niels/files/temp/aya/aya-log" }
+# aya = { path = "/home/niels/files/temp/aya/aya" }
+# aya-log = { path = "/home/niels/files/temp/aya/aya-log" }
+aya = { git = "https://github.com/aya-rs/aya" }
+aya-log =  { git = "https://github.com/aya-rs/aya" }
 responder-common = { path = "../responder-common", features=["user"] }
 anyhow = "1.0.42"
 clap = { version = "3.1", features = ["derive"] }
 env_logger = "0.9"
 log = "0.4"
-tokio = { version = "1.18", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] }
+tokio = { version = "1.25", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] }
 csv = "1.1"
 serde = { version = "1.0", features = ["derive"] }
 

+ 2 - 1
xtask/Cargo.toml

@@ -6,4 +6,5 @@ edition = "2021"
 [dependencies]
 anyhow = "1"
 clap = { version = "3.1", features = ["derive"] }
-aya-tool = { path = "/home/niels/files/temp/aya/aya-tool" }
+# aya-tool = { path = "/home/niels/files/temp/aya/aya-tool" }
+aya-tool = { git = "https://github.com/aya-rs/aya" }