From 14f7778732802b907dc337ab911a220efb4e4cad Mon Sep 17 00:00:00 2001 From: mwojcik Date: Thu, 7 Apr 2022 16:03:12 +0800 Subject: [PATCH] update libconfig features --- src/Cargo.lock | 12 ++++++------ src/libboard_artiq/Cargo.toml | 2 +- src/runtime/Cargo.toml | 2 +- src/satman/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Cargo.lock b/src/Cargo.lock index 901ce68..2b11062 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -219,7 +219,7 @@ dependencies = [ [[package]] name = "libasync" version = "0.0.0" -source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#1c8e2c318cab8476bd7aeb81b5aca4a35e833517" +source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#56c27e98e4fc2bd719d26abaa98a7628c395b9c0" dependencies = [ "embedded-hal", "libcortex_a9", @@ -251,7 +251,7 @@ dependencies = [ [[package]] name = "libboard_zynq" version = "0.0.0" -source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#1c8e2c318cab8476bd7aeb81b5aca4a35e833517" +source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#56c27e98e4fc2bd719d26abaa98a7628c395b9c0" dependencies = [ "bit_field", "embedded-hal", @@ -276,7 +276,7 @@ dependencies = [ [[package]] name = "libconfig" version = "0.1.0" -source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#1c8e2c318cab8476bd7aeb81b5aca4a35e833517" +source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#56c27e98e4fc2bd719d26abaa98a7628c395b9c0" dependencies = [ "core_io", "fatfs", @@ -287,7 +287,7 @@ dependencies = [ [[package]] name = "libcortex_a9" version = "0.0.0" -source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#1c8e2c318cab8476bd7aeb81b5aca4a35e833517" +source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#56c27e98e4fc2bd719d26abaa98a7628c395b9c0" dependencies = [ "bit_field", "libregister", @@ -303,7 +303,7 @@ checksum = "33a33a362ce288760ec6a508b94caaec573ae7d3bbbd91b87aa0bad4456839db" [[package]] name = "libregister" version = "0.0.0" -source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#1c8e2c318cab8476bd7aeb81b5aca4a35e833517" +source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#56c27e98e4fc2bd719d26abaa98a7628c395b9c0" dependencies = [ "bit_field", "vcell", @@ -313,7 +313,7 @@ dependencies = [ [[package]] name = "libsupport_zynq" version = "0.0.0" -source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#1c8e2c318cab8476bd7aeb81b5aca4a35e833517" +source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#56c27e98e4fc2bd719d26abaa98a7628c395b9c0" dependencies = [ "cc", "compiler_builtins", diff --git a/src/libboard_artiq/Cargo.toml b/src/libboard_artiq/Cargo.toml index be08bac..e5ccf34 100644 --- a/src/libboard_artiq/Cargo.toml +++ b/src/libboard_artiq/Cargo.toml @@ -26,6 +26,6 @@ void = { version = "1", default-features = false } io = { path = "../libio", features = ["byteorder"] } libboard_zynq = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git"} libregister = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } -libconfig = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git"} +libconfig = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git", features = ["fat_lfn"] } libcortex_a9 = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } libasync = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } \ No newline at end of file diff --git a/src/runtime/Cargo.toml b/src/runtime/Cargo.toml index 804e8ec..b5c5e69 100644 --- a/src/runtime/Cargo.toml +++ b/src/runtime/Cargo.toml @@ -34,7 +34,7 @@ libsupport_zynq = { default-features = false, features = ["alloc_core"], git = " libcortex_a9 = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } libasync = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } libregister = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } -libconfig = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git", features = ["ipv6"] } +libconfig = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git", features = ["fat_lfn", "ipv6"] } dyld = { path = "../libdyld" } dwarf = { path = "../libdwarf" } diff --git a/src/satman/Cargo.toml b/src/satman/Cargo.toml index 6c44e5a..1c94181 100644 --- a/src/satman/Cargo.toml +++ b/src/satman/Cargo.toml @@ -21,7 +21,7 @@ libsupport_zynq = { default-features = false, features = ["alloc_core"], git = " libcortex_a9 = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } libasync = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } libregister = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" } -libconfig = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git", features = ["ipv6"] } +libconfig = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git", features = ["fat_lfn", "ipv6"] } libboard_artiq = { path = "../libboard_artiq" } unwind = { path = "../libunwind" }