HI,
What is the statement on windows support? I created a minimal build and it fails:
Compiling hyper-util v0.1.20
Compiling actix-web v4.14.0
Compiling feldera-samply v0.319.0
error[E0432]: unresolved import `nix::time`
--> C:\Users\val\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\feldera-samply-0.319.0\src\lib.rs:66:10
|
66 | use nix::time::{ClockId, clock_gettime};
| ^^^^ could not find `time` in `nix`
error[E0433]: cannot find `unistd` in `nix`
--> C:\Users\val\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\feldera-samply-0.319.0\src\lib.rs:716:29
|
716 | .entry(nix::unistd::getpid().as_raw() as usize)
| ^^^^^^ could not find `unistd` in `nix`
Some errors have detailed explanations: E0432, E0433.
is it worth for me to fix those issues, or am I going to be running into more issues down the line? It's an absolute minimal app:
[package]
name = "dbsp-probe"
version = "0.1.0"
edition = "2024"
[dependencies]
dbsp = { version = "0.319.0", default-features = false }
HI,
What is the statement on windows support? I created a minimal build and it fails:
is it worth for me to fix those issues, or am I going to be running into more issues down the line? It's an absolute minimal app: