Browse Source

feat: rust-based `toJSON`

dev
Dnomd343 2 years ago
parent
commit
36aa97a93e
  1. 3
      .gitignore
  2. 7
      to-json/Cargo.lock
  3. 8
      to-json/Cargo.toml
  4. 3
      to-json/src/main.rs
  5. 0
      toJSON-legacy/go.mod
  6. 0
      toJSON-legacy/go.sum
  7. 0
      toJSON-legacy/main.go

3
.gitignore

@ -1,6 +1,7 @@
/bin/
/build/
**/.idea/
/.idea/
/assets/*.txt
/to-json/target/
/cmake-build-debug/
/cmake-build-release/

7
to-json/Cargo.lock

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "to-json"
version = "0.1.0"

8
to-json/Cargo.toml

@ -0,0 +1,8 @@
[package]
name = "to-json"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
to-json/src/main.rs

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

0
toJSON/go.mod → toJSON-legacy/go.mod

0
toJSON/go.sum → toJSON-legacy/go.sum

0
toJSON/main.go → toJSON-legacy/main.go

Loading…
Cancel
Save