Fix make submodule command error

This commit is contained in:
LI Qing 2020-02-03 03:28:03 +00:00 committed by Tate, Hongliang Tian
parent e96892d348
commit 2372ef0d4e
3 changed files with 6 additions and 6 deletions

6
.gitmodules vendored

@ -11,10 +11,10 @@
url = https://github.com/occlum/sefs.git url = https://github.com/occlum/sefs.git
[submodule "deps/serde-sgx"] [submodule "deps/serde-sgx"]
path = deps/serde-sgx path = deps/serde-sgx
url = https://github.com/mesalock-linux/serde-sgx url = https://github.com/occlum/serde-sgx
[submodule "deps/itoa-sgx"] [submodule "deps/itoa-sgx"]
path = deps/itoa-sgx path = deps/itoa-sgx
url = https://github.com/mesalock-linux/itoa-sgx url = https://github.com/occlum/itoa-sgx
[submodule "deps/serde-json-sgx"] [submodule "deps/serde-json-sgx"]
path = deps/serde-json-sgx path = deps/serde-json-sgx
url = https://github.com/mesalock-linux/serde-json-sgx url = https://github.com/occlum/serde-json-sgx

2
deps/itoa-sgx vendored

@ -1 +1 @@
Subproject commit e35b45000adf57e592ccd66273b607fcec998258 Subproject commit 48cac59ceea81c9185d9d91a0d85eeecc0dd4e13

4
src/libos/Cargo.lock generated

@ -127,7 +127,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "itoa" name = "itoa"
version = "0.4.4" version = "0.4.5"
dependencies = [ dependencies = [
"sgx_tstd 1.1.0", "sgx_tstd 1.1.0",
] ]
@ -353,7 +353,7 @@ dependencies = [
name = "serde_json" name = "serde_json"
version = "1.0.40" version = "1.0.40"
dependencies = [ dependencies = [
"itoa 0.4.4", "itoa 0.4.5",
"ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.104", "serde 1.0.104",
"sgx_tstd 1.1.0", "sgx_tstd 1.1.0",