Skip to content

Commit ed88035

Browse files
Update README.md
Added tree structures.
1 parent 95013a7 commit ed88035

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,43 @@ Output :-
5353
--------------------
5454

5555

56+
__addition_library project tree structure__
57+
58+
```
59+
addition_library v0.1.0 () -
60+
61+
```
62+
__addition_client project tree structure__
63+
64+
```
65+
addition_client v0.1.0 () -
66+
`-- addition_library feature "default"
67+
`-- addition_library v0.1.0 () -
68+
69+
```
70+
71+
__Repository Tree Structure__
72+
73+
```
74+
├── .github
75+
└── workflows
76+
│ └── rust.yml
77+
├── Application_Requirements.txt
78+
├── LICENSE
79+
├── Output1.png
80+
├── Output2.png
81+
├── README.md
82+
└── SharedObjectFile
83+
├── addition_client
84+
├── .gitignore
85+
├── Cargo.lock
86+
├── Cargo.toml
87+
└── src
88+
│ └── main.rs
89+
└── addition_library
90+
├── .gitignore
91+
├── Cargo.toml
92+
└── src
93+
└── lib.rs
94+
95+
```

0 commit comments

Comments
 (0)